vote up 3 vote down star

Hi all.

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 denormalized_payments where payment1_type = 'check';

Edit: payment1_paid and payment2_paid are booleans.

I can't use any other language for this particular problem than MySql.

Thanks for any help!

Edit: Sorry to everybody who gave me suggestions for summing and concatenating, but I've voted those early answers up because they're useful anyway. And thanks to everybody for your incredibly quick answers!

flag

62% accept rate

8 Answers

vote up 2 vote down check

Ok, for logical and you can do

Select (payment1_paid && payment2_paid) as paid_in_full 
from denormalized_payments 
where payment1_type = 'check';

As seen here.

link|flag
Excellent. That's what I needed, with the MySql reference to boot! Thank you. – yar Oct 29 '08 at 22:54
vote up 2 vote down

Just do

Select CONCAT(payment1_paid, payment2_paid) as paid_in_full 
from denormalized_payments 
where payment1_type = 'check';

You can concat any number of field you want.

link|flag
Sorry I didn't specify, they are booleans. Thanks! – yar Oct 29 '08 at 22:46
vote up 0 vote down

Do you mean you want them summed or concatenated?

link|flag
vote up 1 vote down

If by combine you mean concatenate then this will work:

select concat(payment1_paid, payment2_paid) as paid_in_full
from denormalized_payments where payment1_type = 'check';

If by combine you mean add, then this should work:

select payment1_paid + payment2_paid as paid_in_full
from denormalized_payments where payment1_type = 'check';

[EDIT]

For boolean AND:

select payment1_paid && payment2_paid as paid_in_full
from denormalized_payments where payment1_type = 'check';
link|flag
thanks, sorry the question was about booleans but that wasn't clear until later. great answer! – yar Oct 29 '08 at 22:52
vote up 1 vote down

I am not sure but do you mean to concatenate?

SELECT CONCAT(ColumnA, ColumnB) AS ColumnZ
FROM Table
link|flag
Sorry I didn't specify, they are booleans. Thanks! – yar Oct 29 '08 at 22:45
vote up 0 vote down

SELECT IF(payment1_paid = 1 AND payment2_paid = 1, 1, 0) AS paid_in_fill

link|flag
vote up 0 vote down

Hi, 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!

link|flag
vote up 0 vote down
select (payment1_paid && payment2_paid) as paid_in_full
from denormalized_payments where payment1_type = 'check';
link|flag
Actually, It you should go with the Logical AND (&&) as @Robert Gamble mentioned since it should allow short circuit evaluation. Thus if payment1_paid is false, it's false. dev.mysql.com/doc/refman/… – dshaw Oct 29 '08 at 23:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.