2 lines
87 B
SQL
2 lines
87 B
SQL
UPDATE orders SET payment_type = 'none' WHERE order_sum <= 0 AND payment_type IS NULL;
|
UPDATE orders SET payment_type = 'none' WHERE order_sum <= 0 AND payment_type IS NULL;
|