Viewing 4 posts - 1 through 4 (of 4 total)
Mark Fitzgerald-331224 (3/12/2012)
March 12, 2012 at 10:53 am
ColdCoffee (3/12/2012)
March 12, 2012 at 10:00 am
seth delconte (3/12/2012)
marly (3/12/2012)
SELECT * from dbo.mytable WHERE FirstName LIKE ‘%’ + REPLACE(@FirstName , ‘%’,’’) + ‘%’
but it still seems to put down the whole database...
March 12, 2012 at 9:53 am
I changed it to
SELECT * from dbo.mytable WHERE FirstName LIKE ‘%’ + REPLACE(@FirstName , ‘%’,’’) + ‘%’
but it still seems to put down the whole database if I do...
March 12, 2012 at 9:45 am
Viewing 4 posts - 1 through 4 (of 4 total)