Imagine the following lines in my MySQL database:
I want a query that displays the name and age of the person who is the oldest in the table, so I did this query :
SELECT nome, MAX(idade)
from pessoas;
But it does not return th...
asked by
22.11.2018 / 16:26