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%'