Retrieve the tables with
#+begin_src sql :engine mysql :dbuser org :database grocer
show tables;
#+end_src
#+RESULTS:
| Tables_in_grocer |
|------------------|
| Customers |
| OrderItems |
| Orders |
| Products |
| Vendors |
Then rview each table one by one
select * from Vendors;
select * from Products;
select * from Customers;
select * from Orders;
select * from OrderItems;
Is it possible to take advantage of loop as
for table in tables
select * from table;