Hi, I'm trying to make the following query: Find those families that have at least 3 children, and with a maximum age of less than 10 years.
(all fields requested by the query are in the same table)
I have this:
>SELECT * FROM familias WHERE familias.Num_Hijos >=3
and familias.Edad_HijoMayor =< 10
but I do not know the correct syntax.