Created
November 15, 2025 06:10
-
-
Save Hazem-Ben-Khalfallah/22919fdd779a18178845f09cbb0d5ec5 to your computer and use it in GitHub Desktop.
[Find table by name like a pattern] #sql
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 | |
| FROM information_schema.tables | |
| WHERE table_schema = 'lisa_dev_test2' | |
| AND table_name LIKE '%intent%' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment