Lãi suất ngân hàng SCB hiện nay

Certainly! You can use the following SQL query to add a "status" column to an existing "orders" table and set its default value to 'PENDING'. Additionally, if the "completed_at" column is set (not null), it will update the "status" column to 'COMPLETE':

```sql

ALTER TABLE orders

ADD COLUMN status VARCHAR(20) DEFAULT 'PENDING';

UPDATE orders

SET status = 'COMPLETE'

WHERE completed_at IS NOT NULL;

```

Replace 'orders' with the name of your table if it's different, and adjust the column types according to your specific requirements.

4.8/5 (93 votes)

Bạn muốn vay tiền? - Click xem Vay tiền Online

Ý kiến khách hàngPreNext
Có thể bạn quan tâm?

Bạn muốn vay tiền? - Click xem Vay tiền Online