query to get the value of a particular cell in Mysql
i have a table in mysql li开发者_运维百科ke this.
RequestName | Status | Details
Req1 | Scheduled | NA
Req2 | Pending | Na
Now how can i get the value scheduled?Can you please help me on what query to use to get that value
SELECT `Status` FROM tableName WHERE `RequestName` = 'Req1'
精彩评论