Quantcast
Channel: dBforums – Everything on Databases, Design, Developers and Administrators
Viewing all articles
Browse latest Browse all 13329

Can I save layout in Acces SQL view?

$
0
0
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?

Viewing all articles
Browse latest Browse all 13329

Trending Articles