This repository demonstrates a common SQL error: using a reserved keyword as a column alias. The bug.sql file contains the erroneous query. The bugSolution.sql file provides the corrected version.
データベースを使う案件では,いろいろな資料の中で「SQL」という単語を目にすることが多くなります。「SQLデータベース」や「SQL文」といった使われ方をします。このSQLとはなんでしょうか。 SQLとはなにか ここまでデータベースというものを理解して ...
--A column alias allows you to assign a column or an expression in the select list of a SELECT statement a temporary name. --The column alias exists temporarily during the execution of the query.