For instance, when I type in and save the next in SQL view;
SELECT
LTRIM(RTRIM([firstname]) &
RTRIM(" " & LTRIM([lastname]))) AS name,
address,
city,
state
FROM customers
When I close the query and open it again in SQL view it will show up like this;
SELECT LTRIM(RTRIM([firstname]) & RTRIM(" " & LTRIM([lastname]))) AS name, address, city, state
FROM customers
Is there a way I can save the first layout?
SELECT
LTRIM(RTRIM([firstname]) &
RTRIM(" " & LTRIM([lastname]))) AS name,
address,
city,
state
FROM customers
When I close the query and open it again in SQL view it will show up like this;
SELECT LTRIM(RTRIM([firstname]) & RTRIM(" " & LTRIM([lastname]))) AS name, address, city, state
FROM customers
Is there a way I can save the first layout?