Created
November 12, 2013 14:06
-
-
Save carlossaraiva/7431347 to your computer and use it in GitHub Desktop.
[SQL SERVER ] - Mostrar todas as colunas de uma determinada tabela
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
USE dbName | |
GO | |
SELECT * from sys.tables | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment