1
I have a simple command
SELECT MATRICULA FROM ALUNOS WHERE ID_ALUNO IN (1,2,3,4,5,6)
I would like to know how to get via SQL a result like this:
ID| STUDENT
1 | LUIZ
2 | MARIA
3 |
4 | JOÃO
5 | CARLOS
6 |
I mean, bringing in the ones he found, and the ones he couldn’t find to leave blank... is via SQL?
I’m using Oracle 11
Thanks for the help guy o/ So it really works, but as my ultimate goal was to update an excel spreadsheet that already had all the Ids, and I just needed to see which ones were in the system, I!!!
– FeJauM