Monday, March 2, 2015

SELECT a String record from a table

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