S
Shivalee Gupta via AccessMonster.com
i have this query:
SELECT [msysobjects].[Name]
FROM msysobjects
WHERE ((([msysobjects].[Type]) In (1,6)));
it shows me a list of my sys objects. how can i restrict the output to
showing only tablenames and not see the rest of the items?
please help!
SELECT [msysobjects].[Name]
FROM msysobjects
WHERE ((([msysobjects].[Type]) In (1,6)));
it shows me a list of my sys objects. how can i restrict the output to
showing only tablenames and not see the rest of the items?
please help!