I'm using below query to fetch data from tables.
SELECT * FROM TABLE_NAME LIMIT 10 OFFSET 0;
but the result seems to have headers with it, how to get rid of those headers.
Thank you
I'm using below query to fetch data from tables.
SELECT * FROM TABLE_NAME LIMIT 10 OFFSET 0;
but the result seems to have headers with it, how to get rid of those headers.
Thank you
Delete the first row containing the header data and you are good to go
delete from TABLE_NAME where id=1;
am assuming the first row has the header information