€13.40 – €16.90
- SELECT: Specifies the columns to retrieve. Using
*
retrieves all columns from the table. - FROM customers: Indicates the table to query.
- WHERE age > 30: Filters rows where the value in the
age
column is greater than 30. - AND country = ‘USA’: Adds an additional filter for rows where the
country
column equals'USA'
.