T-SQL
-
I don't see a syntax error, but in number 2, @keywords isn't single quoted... your query will look something like... and (summary like '%somevalue%') and (summary like %somevalue%)
-
I would guess it is because the '' in line 1 isn't a quotation mark, but double pings ' which means escaping the second ping. Ping normally starts a string, but if you need pings in the string, you must escape them by adding a ping infront. Thus the string isnt' terminated proberly in line 2. I'd think something along that line? --------------------------- 127.0.0.1 - Sweet 127.0.0.1
-
-
I would guess it is because the '' in line 1 isn't a quotation mark, but double pings ' which means escaping the second ping. Ping normally starts a string, but if you need pings in the string, you must escape them by adding a ping infront. Thus the string isnt' terminated proberly in line 2. I'd think something along that line? --------------------------- 127.0.0.1 - Sweet 127.0.0.1
Alsvha wrote: pings :confused: You mean "apostrophe"
My: Blog | Photos WDevs.com - Open Source Code Hosting, Blogs, FTP, Mail and More
-
Alsvha wrote: pings :confused: You mean "apostrophe"
My: Blog | Photos WDevs.com - Open Source Code Hosting, Blogs, FTP, Mail and More