How can I do boolean logic on two columns in MySQL?

前端 未结 7 842
野的像风
野的像风 2021-01-18 06:41

I want to do a select in MySql that combines several columns... something like this pseudocode:

SELECT payment1_paid AND payment2_paid AS paid_in_full 
FROM          


        
相关标签:
7条回答
  • 2021-01-18 07:21

    If are Strings (or you want to treat like Strings the columns that you want to combine) you can use CONCAT and CONCAT_WS. Good luck!

    0 讨论(0)
提交回复
热议问题