AThena single vs. double quotes

0

Why does this query fail in Athena:

`SELECT COUNT (title) FROM "s3_library_data" WHERE s3_library_data.genre = "Science Fiction"`

but this one works?

`SELECT COUNT (title) FROM "s3_library_data" WHERE s3_library_data.genre = 'Science Fiction'`
AWS
質問済み 2ヶ月前275ビュー
1回答
0
承認された回答

The single and double quote are used for different things.

  • Single quotes are used to denote string literals. For example, if you want to search for a specific string value in a column, you would enclose the string in single quotes, like 'search string'.

  • Double quotes are used to escape reserved keywords that are being used as column or table names.

In your first query you are looking for a literal value - Science Fiction. So you should use single quotes, not double quotes.

AWS
回答済み 2ヶ月前
profile picture
エキスパート
レビュー済み 2ヶ月前
  • Thank you! My issue is the query is being generated by an LLM and I have been trying to "prompt it to use single quotes.

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ