Upper case or lower case table name in SQL statement

Unlike some other SQL formatting tools, SQL Pretty Printer able to control the case of table name in SQL statement, this feature helps you to find out tables in SQL statement quickly.

name: case_table_name, default is no change.

setting path: capitalisation -> Table


SELECT department_id,

       Min(salary)

FROM   employees

GROUP  BY department_id 

After setting case_table_name to upper case,


SELECT department_id,

       Min(salary)

FROM   EMPLOYEES

GROUP  BY department_id 

Newsletter Updates

Enter your email address below to subscribe to our newsletter