I'm using this query:
select * from data_table;
It'll give me the data from the table
And now I need to print the report on screen with the many tables using the different columns.
I'm able to get the one table with first 5 columns, but for next table with the next 5 columns and so on how I can retrieve the data with the same one query I've used.
mannnu