Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dieissonmartins/f31b392900ed610737f8ef942916c702 to your computer and use it in GitHub Desktop.
Save dieissonmartins/f31b392900ed610737f8ef942916c702 to your computer and use it in GitHub Desktop.
Verifica se view de uma tabela já existe
SELECT TABLE_NAME AS ViewName
FROM information_schema.VIEWS
WHERE
TABLE_SCHEMA = 'desenvolvimento'
AND VIEW_DEFINITION LIKE '%tabela_aqui%'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment