Retrieving data from a database

SELECT * FROM PRODUCT ;

SELECT ProductID, ProductName, InStock
FROM PRODUCT
WHERE Category = 'guitar' ;