4 lines
94 B
SQL
4 lines
94 B
SQL
select BOOK_NUM, BOOK_TITLE, BOOK_COST
|
|
from BOOK
|
|
where BOOK_COST = 59.95
|
|
order by BOOK_NUM; |