sql删除语句(易语言SQL语句的查询、添加、删除和修改的代码应该怎么写)
2022-09-21 02:19:52
摘要: sql删除语句(易语言SQL语句的查询、添加、删除和修改的代码应该怎么写)...
10、说明:几个简单的基本的sql语句选择:select * from table1 where Id=1(Id=1为条件语句,根据自己情况自定义)
插入:insert into table1(field1,field2) values(value1,value2)删除:delete from table1 where 范围更新:update table1 set field1=value1 where 范围查找:select * from table1 where field1 like ’%value1%’ ---like的语法很精妙,查资料!
