--selecting all data from a table named ProductCatalog
select * from ProductCatalog;

--selecting certain columns from a table named ProductCatalog
select Color, Description from ProductCatalog;

--Running a scan query with filters against a table named ProductCatalog
--where the id is greater than 1 and the ProductCategory starts with the letters Bic
select * from ProductCatalog where id > 1 and ProductCategory like 'Bic%';

--Using AWS CLI type scan syntax to scan a table named ProductCatalog returning the Brand and id columns
--where the Description column contains the word Red and the id column is greater than 10
scan
table-name=ProductCatalog
projection-expression=Brand,id
filter-expression=contains(Description, :x) and id > :y
expression-attribute-values=:x,'Red'
expression-attribute-values=:y,10