1、新增数据

-- 插入数据
insert into my_student values(1,'itcast0001','Jim','male'),
(2,'itcast0002','Hanmeimei','female');


-- 插入数据: 指定字段列表
insert into my_student(number,sex,name,id) values
('itcast0003','male','Tom',3),
('itcast0004','female','Lily',4);

2、查看数据

-- 查看所有数据
select * from my_student;

-- 查看指定字段,指定条件数据
select id,number,sex,name from my_student where id = 1; -- 查看满足id为1的学生信息

3、更新数据

-- 更新数据
update my_student set sex = 'female' where name = 'jim';

4、删除数据

-- 删除数据
delete from my_student where sex = 'male';

5、修改表删除一个字段

alert table Product_ drop name;