Forums.ATC.no

Teknisk => Generelt teknisk => Emne startet av: ATC på 07. April 2009, 18:39 pm

Tittel: MS SQL Server: show tables
Skrevet av: ATC07. April 2009, 18:39 pm
What is the MS SQL equivalent of "show tables"?
Tittel: [Solved] MS SQL Server: show tables
Skrevet av: ATC07. April 2009, 18:39 pm
SELECT * FROM sysobjects WHERE xtype='U';

This shows all User tables in the current database.