Skip to content

Instantly share code, notes, and snippets.

View egenedy97's full-sized avatar
😄

Eslam Genedy egenedy97

😄
View GitHub Profile
# 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%'