标签: mysql postgresql
我想将值添加到name = Michael的列中,例如似乎没有办法做到这一点
答案 0 :(得分:0)
我想你想要更新名称= Michael的表格列中的值。
为此:
update tablename set col1='val1', col2='val2', col3='val3' where name = 'Michael'