...
Info |
---|
SQL is a language intended for table transformation. The input is one or more tables, the output is also a table and every instruction applied in the middle gets and outputs a table. Everything in SQL SELECT clause is about tables. |
Tables have columns and columns have a name and a data type: INT, STRING, DATE, BOOLEAN, etc.
...