Group: Forum Members
Posts: 436,
Visits: 944
|
These are my examples:
SELECT *
INTO #TEMP
FROM TABLE
SELECT * INTO #TEMP FROM TABLE
I would like some help creating a RegEx pattern to find the word INTO followed by a space then a pound sign (#) then a wildcard for the temp table name then another space.
Thanks
|