The answer of the following program is given below:
<code>SELECT
si.id,
si.product_id,
si.price,
p.name,
c.category
FROM SaleItem si
JOIN Product p ON si.product_id = p.id
JOIN Category c ON p.category_id = c.id
WHERE
c.category IN ('sneakers', 'casual shoes') AND
si.price = 100
</code>
What is program?
A computer utilises a set of instructions called a program to carry out a particular task. A program is like the recipe for a computer, to use an analogy. It includes a list of components (called variables, which can stand for text, graphics, or numeric data) and a list of instructions (called statements), which instruct the computer on how to carry out a certain activity.
Specific programming languages, such C++, Python, and Ruby, are used to construct programmes. These are high level, writable, and readable programming languages. The computer system's compilers, interpreters, or assemblers subsequently convert these languages into low level machine languages.
To learn more about program
https://brainly.com/question/28717367
#SPJ4