This section is not intended to be a course of the SQL language. Therefore, the focus will be put on the minimal set of differences that you must know in order to write queries properly.
Show tables and columns
show tables
show columns from <table>
Strings vs aliases
Like in the rest of the database implementations a string is enclosed between single quotes.
On the other hand aliases of column and table names must be surrounded by accent characters.
Table, column and function names are case sensitive
Use Uppercase names
KEY is a reserved word
As other database vendors, SQL Cloud does have reserved words that must be surrounded with accents or square brackets
No schema support
Many database vendors group tables into schemas (i.e.: PUBLIC). SQL Cloud does not support schemes.
Reckless queries (AKA Full scans) are not allowed
Many times, users write reckless queries that requite to scan/fetch all the records on a table to be answered.