Skip to content

SQL capitalization table

shenhuan2021 edited this page Mar 3, 2024 · 8 revisions

Delphi

Java

  • TODO

Uniform

  • Table name has a dedicated case option.

Option: fmt105_case_table_name = upper, type: TFmtCase.

SELECT department_id, 
       Min( salary )  
FROM   EMPLOYEES 
GROUP  BY department_id  
Table mapping file

User can also specify a table mapping file that all tables should be capitalized exactly the same as the one in this file. Table name in this mapping file should be one table per line with desired case. If table name is not found in this mapping file, then case option for table name applied.

Clone this wiki locally