<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style>
</head>
<body class='hmmessage'>
Hello,<br><br>Does anyone familiar with postgres case statement. <br><br>I have a tale called selling1.sql, inside table there are two columns<br>item(1,1,2,3,3,3,4,4,4....)  and price(234, 243, 245, 342, 124, 245, 343, 123,455.....). I want to select the price where item id is equal to 1, and if its price is bigger than 200 and smaller than 300, the price will be changed into 400 . so in this case, price column value will be changed into,  price(400,400, 245,342,124, 245, 343, 123, 455...)<br><br>My sql statement is like this<br><br>select price from selling1 where selling1.item = '1',<br> case when 200<selling1.price and selling1.price <300 then '400'else 'other' END;<br><br>but it always give me the error. It said syntax error in case. <br><br>Do you known what¶ wrong? <br><br>Thanks<br><br>                                    </body>
</html>