Created
August 4, 2022 17:55
-
-
Save renatocfrancisco/6c8c6da7c1015e5ea5b86734c7d96efa to your computer and use it in GitHub Desktop.
SQL Script to check datatypes in a table
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 | |
TABLE_NAME, | |
COLUMN_NAME, | |
DATA_TYPE | |
FROM INFORMATION_SCHEMA.COLUMNS | |
WHERE TABLE_NAME = 'table'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment