-1
Hello! I have the table OPERATION where I have 3 columns: Codoper, Description, nauteness. I have to design the description and nature of all incoming operations. Then sort by the operation code. Operation Code 1, 3 and 6 are my input operations. Code 2, 4 and 5 are output. I am locked in Where...
Select operacao.descricao, operacao.natureza, operacao.codoper
From operacao
Where ___________________
Order by operacao.codoper
If anyone can give a hint or help I’m grateful.
Where codoper in (1,3,6)
– thiagoalessio
Thanks for the help. It worked!!
– Wagner
Seems to be missing a column indicating the type of operation...
– José Diz