-
Notifications
You must be signed in to change notification settings - Fork 13
SQL capitalization funcname
shenhuan2021 edited this page Mar 3, 2024
·
4 revisions
- gfmtopt.case_funcname, type of TCaseOption
- public TCaseOption caseFuncname, type of TCaseOption
- funcname lower
Option: fmt107_case_function_name = lower, type: TFmtCase.
```SQL
SELECT department_id,
min( salary )
FROM employees
GROUP BY department_id
```
-
funcname upper
Option: fmt103_case_quoted_identifier = upper, type: TFmtCase.
```SQL
SELECT department_id, MIN( salary )
FROM employees
GROUP BY department_id
```