DECLARE @Tablename TABLE (Stringtype nvarchar(4000) not null)
INSERT INTO @Tablename VALUES ('/Apprecord/')
SELECT * FROM @Tablename
WHERE Stringtype = '/Apprecord/'
Here is the syntax when you run this it does not return the result with where condition.
No comments:
Post a Comment