Created
June 20, 2019 21:50
-
-
Save tamiroze/783b8ab7ea3777f1c039a68e1b7c7bb6 to your computer and use it in GitHub Desktop.
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
select * | |
from information_schema.tables | |
where table_name= upper('table_name'); | |
# Instead make sure you send the string in UPPER case. Dont use the upper function. | |
select * | |
from information_schema.tables | |
where table_name= 'TABLE_NAME'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment