更新postgresql中的列时,我们可以将其值重置为DEFAULT
UPDATE table SET column = DEFAULT
DBIx :: Class中是否有模拟?就像这样:
$schame->result_set( 'table' )->update({ column => DEFAULT })
答案 0 :(得分:0)
感谢 ilmari 。我需要ref
来使用文字SQL:
$schame->result_set( 'table' )->update({ column => \'DEFAULT' })