如何在没有插入select语句的情况下向SQL表中添加一些值?

时间:2016-12-08 12:08:29

标签: mysql postgresql

我想将值添加到name = Michael的列中,例如似乎没有办法做到这一点

1 个答案:

答案 0 :(得分:0)

我想你想要更新名称= Michael的表格列中的值。

为此:

update tablename 
set col1='val1', col2='val2', col3='val3' 
where name = 'Michael'