What i have
customer_id
1
2
2
1
3
What i want (for all customer id's with 1 ,i want to flag as valid ,rest of the customer id's as invalid in the new column "warining_customer_id"
customer_id warining_customer_id
1 Valid
2 Invalid
2 Invalid
1 Valid
3 Invalid
CASEexpression.update table1 set warining_customer_id = ...