1098. Unpopular Books
Description
+----------------+---------+
| Column Name | Type |
+----------------+---------+
| book\_id | int |
| name | varchar |
| available\_from | date |
+----------------+---------+
book\_id is the primary key of this table.+----------------+---------+
| Column Name | Type |
+----------------+---------+
| order\_id | int |
| book\_id | int |
| quantity | int |
| dispatch\_date | date |
+----------------+---------+
order\_id is the primary key of this table.
book\_id is a foreign key to the Books table.ac
Last updated