When I am writing a query via Sequel Pro and format it like this a.TBL_ADJUSTMENT
I get the following error Table 'a.TBL_ADJUSTMENT' doesn't exist
.
How can I write it so that I can label my tables with a letter/number?
When I am writing a query via Sequel Pro and format it like this a.TBL_ADJUSTMENT
I get the following error Table 'a.TBL_ADJUSTMENT' doesn't exist
.
How can I write it so that I can label my tables with a letter/number?
Are you referring to a Table Schema:
select a.Table_name from
(select * from information_schema.`TABLES` a) as a