Ben Amor Bassem


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




Re: LIKE

Jarret


I think this will work for you.

New_VilleExtensionBase.New_name LIKE '%' + @param1 + '%'

Hope this helps.

Jarret