Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のデータベースには、列名の 1 つが「end」と呼ばれるテーブルがあります。End はタイムスタンプです。
次のような単純なクエリを実行しようとすると:
select end from driver_shift_log
end を列名ではなく SQL 関数として解釈しているため、構文エラーが発生します。これを修正する最善の方法に関するヒントはありますか?
この方法を試してください:
select "end" from driver_shift_log
SQL フィドルのデモ