首页 > 代码库 > SQL小操作总结

SQL小操作总结

对SQL数据表中的数据直接更新操作SQL语句:

//直接调用数据表中的函数
update test set test.a = test.a + 1 where b = 100

 

SQL小操作总结