So I have a table with three columns:
Id, Key, Value
I would like to delete all lines where Valueempty ( ''). So I wrote a query for selection before I delete:
Select * from [Imaging.ImageTag] where [Value] = ''
everything is pretty standard so far ...
Now this is the weird part. This query returned two lines, shown below, with comma delimited:
CE7C367C-5C4A-4531-9C8C-8F2A26B1B980, ObjectType, 🎃
F5B2F8A8-C4A8-4799-8824-E5FFEEDAB887, Caption, 🍰
Why do these two lines correspond ''?
additional information
I use Sql-Server, the column [Value]is of type NVARCHAR(300)and yes, the table name is really[Imaging.ImageTag]
user1 source
share