Adding a default alias for each table

Roeland

Member³
Is it possible to add a default alias for each table instead of the standard 't'. So when you right-click on a table, and choose 'Query table' you will get something like

Code:
select * from customer_relation cr

instead of the default

Code:
select * from customer_relation t

This way it's easier to expand queries and maintain some standard in the organisation how to use aliases.
 
Back
Top