Untitled

 avatar
unknown
plain_text
10 months ago
261 B
7
Indexable
SELECT  p.productID, p.productDescription, p.productFinish, p.productStandardPrice
FROM Product_T p 
WHERE (p.productDescription LIKE '%Desk%' 
	   OR p.productDescription LIKE '%Table%') 
	AND p.productStandardPrice  !> 300
ORDER BY p.productStandardPrice
Editor is loading...
Leave a Comment