0
存在しない場合、私はテーブルを持って、列description
とdescription_short
とproducts
は、いくつかのも、両方が満たされている場合があります。だから私がしたいのは、description
のすべてをdescription_short
にコピーすることです。description_short
は空です。のMySQL挿入
MySQLでこれを行う最も簡単な方法は何ですか?
存在しない場合、私はテーブルを持って、列description
とdescription_short
とproducts
は、いくつかのも、両方が満たされている場合があります。だから私がしたいのは、description
のすべてをdescription_short
にコピーすることです。description_short
は空です。のMySQL挿入
MySQLでこれを行う最も簡単な方法は何ですか?
それは簡単です:
update products
set description = description_short
where description is null;
commit;
update products
set description_short = description
where description_short is null;
commit;
update table_name
set description_short =description
where description_short is null and description is not null