I still live in this ambiguity: conceptually what\'s the difference between a statement and a query in SQL? Can anybody give a definition f
A statement is any SQL command such as SELECT, INSERT, UPDATE, DELETE.
A query is a synonym for a SELECT statement.