我想在没有SQL创建新行的情况下将数据添加到特定行中的字段。
我知道你不能使用WHERE,除非它是一个SELECT语句,但是有类似的东西可以实现相同的结果吗?
INSERT INTO MyTable WHERE ID = " + WebSecurity.CurrentUserId + " (A) " + "VALUES (@0)
答案 0 :(得分:2)
你想要update
,它看起来像是:
update mytable
set col = @0
where id = " + WebSecurity.CurrentUserId + " (A) ";
这是代码外观的草图。例如,我不知道您要更新的列的名称。