๐
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Write a SQL query to search for all products with the word "camera" in either the | |
# product name or description: | |
Select * from product | |
where product_name like '%camera%' | |
or product_description like '%camera%' | |
OlderNewer