Created
June 23, 2021 22:39
-
-
Save halityurttas/b825c62c5098c350910279a7752c84f1 to your computer and use it in GitHub Desktop.
List table with scheme (where in table names)
This file contains hidden or 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
select schema_name(t.schema_id) + '.' + | |
t.name as table_name, | |
t.create_date, | |
t.modify_date | |
from sys.tables t | |
where t.name IN ( | |
'ABC' | |
) | |
order by table_name; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment