Created
March 11, 2016 15:47
-
-
Save tahaipek/6bad40f4dde5f2a713d3 to your computer and use it in GitHub Desktop.
MSSQL Find Table Name
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 [TESTDB] | |
GO | |
SELECT t.name, SCHEMA_NAME(schema_id) AS schema_name FROM sys.tables AS t WHERE t.name like '%Test%' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment