I want to show column expect column number 1 for example = select * from table; this query will show all column
column1 column2 column3 ...
but my question is how to show all column expect column1, so the result will be like this column2 column3 ...
I don't want to use select column2, column3 from table because that query not efective if my column more than 3. thank