How to select multiple columns from a table excluding some columns?
I tried:
SELECT *!=[column name i want to exclude] from tablename;
it didn't work.
How to select multiple columns from a table excluding some columns?
I tried:
SELECT *!=[column name i want to exclude] from tablename;
it didn't work.
select column1, column2, column4, column7
from tablename;
should be the way to go.