SQL/MySql
I am having one table, in that table 25 columns are there. I need to select 24 columns from the table.
and i don't want to write all column names in select query,for example:
SELECT column1, column2...column24 FROM table1;
Is there any way to get (n-1),(n-2) columns from a select query?
n = number of columns.