v.1.1.54245New Features
Quoting Identifiers with Double Quotation Marks
Quoting identifiers using double quotation marks.
Why it matters
This feature was created to allow users to quote identifiers (such as table or column names) using double quotes, which improves compatibility with SQL standards and allows usage of reserved keywords or special characters in identifiers. It enhances query flexibility and reduces syntax errors when dealing with complex or non-standard identifiers.How to use it
Use double quotation marks"identifier" to quote identifiers in SQL queries. For example, you can write SELECT "column_name" FROM "table_name" to refer to columns or tables with special characters or reserved keywords.