I want to write a regex that matches either:
insert #TempTable
or
update #TempTable
How do I do it? I guess an imperfect way to go about it would be:
[insertupda]{6} #TempTable
While this does work in my situation, i want to know the right way to do this.
Thanks :)