Open
Description
Hello all,
Firstly, thank you very much for your hard work on this project - it has been very useful to me.
I have an issue though - when using SQL, how would one specify SELECT
statements? Here's the example I'm trying to achieve:
SELECT city, airport
FROM mytable
WHERE owner = "admin"
AND (
city = "Venice"
OR city = "Palma"
);
My database table is, very simply, as follows:
+--------------------------------------+
| city | owner | airport |
+--------------------------------------+
| ... | ... | ... |
| | | |
+--------------------------------------+
The query builder handles the WHERE
part very well, but could it be used to express SELECT
s as well? And building upon that, what about COUNT()
and GROUP BY
, or ORDER BY
and LIMIT
? Is that something that I could start doing with the query builder or would I have to write it all myself?
Thanks!