sql增删改查的操作
发布网友
发布时间:2022-04-24 06:32
我来回答
共3个回答
热心网友
时间:2022-04-07 22:47
增加 INSERT INTO 表名(字段一,字段二,字段三) VALUES('内容一','内容二','内容三') 数字相对应
修改update 表名 set 字段一='" + 内容一+ "',字段二='" + 内容二+ "' where id= '" + id+ "'"
删除delete from 表名where id="+id
查询 select * from 表名 查询还可以查询相应字段 select id,name,content from 表名
热心网友
时间:2022-04-08 00:05
inser into 表名 (列名) values(值) (增加)
select * from 表名 (查询)
update 表名 set 列名=值 (修改)
delete 数据表 where条件表达式 (删除)
热心网友
时间:2022-04-08 01:39
insert into table_name(column1,column2) values(value1,value2)
delete from table_name where columnN = conditionN
update table_name set column1 = values where columnN = conditionN
select column1,column2 from table_name where columnN = conditionN