Hi, I have a real dumm question:
I'm trying tu put a value ' inside a varchar, like this example:
declare @hola varchar(15)
set @hola= "'hola"
so thay the value of @hola most be 'hola (with the apostrophe)
the Query analizer returns me the next error:
Invalid column name ''hola'.
how I can use it?
Thanks!
I'm trying tu put a value ' inside a varchar, like this example:
declare @hola varchar(15)
set @hola= "'hola"
so thay the value of @hola most be 'hola (with the apostrophe)
the Query analizer returns me the next error:
Invalid column name ''hola'.
how I can use it?
Thanks!