Hi;
Have a very strange query
I have a table with n columns named say a1,a2,a3,…,an
Now I need to only retrieve the values of 1st m columns where m<=n
So generally I would write
select a1,a2,a3,...,am from table
But this gets tooooooooooooo tedious,is there any way like
select (*-3) from table
where i only require the n-3 columns data from the table
Thanks in advance