Search posts...
select price as MAX_PRICE from PRODUCT where price = ( select max(price) from product);
jay0628