Insert [into] <表名>[列名] values <值>
例如:insert into user1 (username,sex,idcard,birthday,email,rpwt)
values ('小黑','男','411083','1984/5/6','hei@163.com','良好')
2 使用update修改数据
Update <表名>set <列名=更新值>[where <更新条件>]
例如:update user4 set sex='女' where rpwt='良好'
3 使用delete删除数据
Delete fro <表名>[where <删除条件>]
例如:delete from user2 where sex='男'
添加可以用Insert into,比如name表中有如下字段:姓名、性别、出生日期,插入命令这样写:c_name = alltrim(thisform.txt_name.value)
c_sex = alltrim(thisform.txt_sex.value)
d_birthday = ctod(thisform.txt_birthday.value)
insert into name (姓名,性别,出生日期) valus (c_name,c_sex,d_birthday)
删除姓名为张三的记录命令格式如下:
delete from name where alltrim(姓名) == "张三"
将姓名张三改为李四命令格式如下:
update name set 姓名 = 李四 where alltrim(姓名) == "张三"
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)