# 前日日付を設定する

set @ymd = date(date_add(now(), interval -1 day) );

# 対象テーブルを更新する

update test_tbl set date = @ymd
where date is null  ## 更新対象のデータ内容によりwhere句の条件を決める
おすすめの記事