Hi,
My question was:
How can I get all the data from mysql database using the php, only with one statement
I'm using this query:
select * from data_table;
It'll give me the data from the table
Once I have all the data. Now for the first time I need to count the rows with multiple columns selected in table data_table.
For the second time or next table I need the columns to get the average in table data_table.
For the next time I wanted to select the rest of the columns in table data_table.
Please help me with this Thank you.
mannu