HI,I want the synthaxe of a query with "LIKE" knowing that the fields must contain strings
then a parametre then strings I tested with this synthaxe but it is not true:
New_VilleExtensionBase.New_name LIKE ¡°%¡± + @param1 + ¡°%¡±
How is that done
SQL Server Reporting Services
HI,I want the synthaxe of a query with "LIKE" knowing that the fields must contain strings
then a parametre then strings I tested with this synthaxe but it is not true:
New_VilleExtensionBase.New_name LIKE ¡°%¡± + @param1 + ¡°%¡±
How is that done
I think this will work for you.
New_VilleExtensionBase.New_name LIKE '%' + @param1 + '%'
Hope this helps.
Jarret