Products in a store

Report a typo

Here we have a table storing info on various products in a store:

CREATE TABLE products (
   product_id int unique NOT NULL,
   created_at datetime NOT NULL,
   name varchar(20) COLLATE utf8_unicode_ci NOT NULL,
   price float(10,2),
   PRIMARY KEY (product_id)
) ;

Please, select the id, name, and price of the 5 cheapest products outside of top 3.

Write an SQL statement





___

Create a free account to access the full topic