1
Good morning, guys I am beginner in SQL and I need to do the following search.
Tenho esta tabela:
MINIMO MAXIMO CLASSE
0 20 1
21 40 2
41 60 3
60 10000 4
I need a command to see which class fits the number 32. More precisely I am using the ORMLITE in Java
Try this: seuDAO.queryBuilder(). selectColumns("name"). Where(). le("minimo", 32). and(). ge("maximo", 32);
– Sorack
Has any response helped solve the problem and can address similar questions from other users? If so, make sure to mark the answer as accepted. To do this just click on the left side of it (below the indicator of up and down votes).
– Sorack