+ 2
what is use of like in SQL
2 odpowiedzi
+ 2
You can use "LIKE" Operator to find similar results for the Word you have entered, OR you can fetch results from database containing the Word you entered.
Ex.,
SELECT * FROM Customers
WHERE Country NOT LIKE '%land%';
0
Remember to use the % sign. (note to self:))