Skip to content

Instantly share code, notes, and snippets.

@tamiroze
Created June 20, 2019 21:50
Show Gist options
  • Save tamiroze/783b8ab7ea3777f1c039a68e1b7c7bb6 to your computer and use it in GitHub Desktop.
Save tamiroze/783b8ab7ea3777f1c039a68e1b7c7bb6 to your computer and use it in GitHub Desktop.
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