一.语法 1.1插入数据 insert into emp(id, username, password) values( 1, "admin", "123"); 1.2删除表中所有的数据 delete from emp; 1.3更新表的数据 update emp set username = "zhangsan" where id = 2;