Well I'm used to doing the select as follows:
select nome, idade,cidade from cadastro
This select returns me the fields name, age, city.
But I want to do the opposite, I have a table with many fields and I want the select to return all the fields, except the fields nome
and idade
.
Is it possible to do this?