好吧,大家觉得这种字体还是比较好看,所有我们就换这种字体了。
insert into 语句用于向表格中插入新的行。
语法
insert into 表名称 values (值1, 值2,....)
我们也可以指定所要插入数据的列:
insert into table_name (列1, 列2,...) values (值1, 值2,....)
update 语句用于修改表中的数据。
语法:
update 表名称 set 列名称 = 新值 where 列名称 = 某值
delete 语句用于删除表中的行。
语法
delete from 表名称 where 列名称 = 值
删除某行
fred wilson 会被删除:
delete from person where lastname = 'wilson'
删除所有行
可以在不删除表的情况下删除所有的行。这意味着表的结构、属性和索引都是完整的:
delete from table_name或者:delete * from table_name