You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Write a query to identify all the products whose names contain the word "washer" or "nut".
select
name
fromproduction.productwhere
name ~*'.*(washer|nut).*';
Write a query to identify all the products that are some kind of "HL" "Frame" and either "Black" or "Yellow"
Hint: select all the names in the product table to identify a pattern that will help you write this regular expression
select
name
fromproduction.productwhere
name ~*'HL.*Frame.*(Black|Yellow)';
Write a query to select all the descriptions from the productdescription table that exclusively use letters from the English alphabet (lowercase or uppercase), whitespace characters, and punctuation.