+ 1
Error I don’t understand please thank you!
/* Table desserts select the dessert name and price where the name contains 'chocolate' */ select name,price from desserts where name ='chocolate'
1 Resposta
+ 8
The name contains 'chocolate', which means it may be like 'chocolate cake' or 'milk chocolate truffle'. Use wildcards in the comparison string in order to allow for more than just 'chocolate'. Also you will need a different comparison operator other than =, since you will be looking for an inexact match.