Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Вивчайте Challenge: The cheapest new A-series cars | Practicing
SQL Basics

book
Challenge: The cheapest new A-series cars

Завдання

Swipe to start coding

From the audi_cars table extract all the characteristics for TOP 3 cheapest (column price) A-series (column model) cars manufactured after 2016 (column year).

Рішення

SELECT *
FROM audi_cars
WHERE model LIKE 'A%' AND year > 2016
ORDER BY price
LIMIT 3

Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 6. Розділ 3

toggle bottom row
Query ResultQuery Result
No query executed yet...
some-alt