Skip to content

Instantly share code, notes, and snippets.

@icalderond
Created January 22, 2015 16:52
Show Gist options
  • Save icalderond/448bb57aabdda44d94af to your computer and use it in GitHub Desktop.
Save icalderond/448bb57aabdda44d94af to your computer and use it in GitHub Desktop.
Ver los nombres de las tablas en sql server
SELECT TABLE_NAME
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_TYPE = 'BASE TABLE'
AND TABLE_NAME like '%requisi%'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment