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
DECLARE @AlphaNumChars varchar(50) | |
SET @AlphaNumChars = 'a,1,m,s' | |
SELECT * | |
FROM INFORMATION_SCHEMA.TABLES | |
WHERE CHARINDEX(LEFT(TABLE_NAME,1),@AlphaNumChars) > 0 |
This query will return any record whose "table_name" begins with 'a', '1', 'm', or 's'. Obviously to match just on 'm', you would set @AlphaNumChars to 'm'. You could turn this into a stored procedure or keep it as an inline query. What other methods do you use? Let us know by leaving a comment.
No comments:
Post a Comment