(从[付款]中选择[金额],其中[[付款帐户] ='确认存款')和([操作] ='已收到')和([金额] ='95'))

时间:2018-10-24 14:05:36

标签: sql

获取语法错误无法解决。请帮忙!谢谢

1 个答案:

答案 0 :(得分:0)

 select amount
   from payment
  where payment_account = 'Confirmation Deposit'
    and action = 'Received'
    and amount = '95'