Skip to content

SQL capitalization identifier

Tako Lee edited this page Feb 20, 2014 · 39 revisions

Set identifier to preferred case option.

```SQL
SELECT department_id, 
       Min( salary )  
FROM   employees  
GROUP  BY department_id  
```
Clone this wiki locally