2
Well I’m used to doing the select as follows:
select nome, idade,cidade from cadastro
This select me returns the fields name, age, city.
But I want to do the opposite, I have a table with many fields and I want select to return me all fields, except the fields nome
and idade
.
It is possible to do this?
I think you will have to discriminate the fields, except these 2 ai in the query.
– user28595
I know that, but I want to know if there’s a simpler way. For I would discriminate only 2 fields that I didn’t want instead of having to discriminate all fields.
– Hugo Borges