0
LIKE
LIKE You are having dinner at a restaurant and decide to order a chocolate dessert. Here is the desserts menu: Write a query to output only chocolate desserts. Use the LIKE operator, and don't forget about "%".
4 Respuestas
+ 1
SELECT *
FROM desserts
WHERE Name like'%checolate%'
order by price ASC;
0
JM Tyler Dylan Pineda did you try writing the query as they described? What was the result?
0
select * from suppliers
where city NOT IN ('london','Paris')
and status is not Null
- 1
Use LIKE '%Chocolate%'
statement for your program.