Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Get a list of tables
Message
From
22/07/2004 22:25:36
 
 
To
22/07/2004 21:19:36
General information
Forum:
ASP.NET
Category:
Other
Miscellaneous
Thread ID:
00927255
Message ID:
00927264
Views:
14
Winan,

I'm not sure if this is the 'standard' way, but one way is to query the information schema of the database...

select distinct table_name from MyDatabase.Information_schema.columns

That will get you a unique list of tables.

If you want a list of tables and columns...

select table_name,column_name from MyDatabase.Information_schema.columns

Kevin
Previous
Reply
Map
View

Click here to load this message in the networking platform