数据库基础操作

增删改查:insert INTO 表名 VALUES();--添加表数据delete from 表名where 列名 =条件--条件删除表数据update 表名set 列名=修改的值 where 列名=条件 --条件修改表数据truncate table 表名 --删除表数