For example, there is 10 fields in a table. I want to select 9 fields except one(a9).
a1 a2 a3 a4 a5 a6 a7 a8 a9 a10
select a1,a2,a3,a4,a5,a6,a7,a8,a10
from t1
Is there simple way to get the result?
Notice: there is no rules for fields(like aN ). It's just convenient to make an example.