\\连接数据库
mysql -uroot -p
\\创建数据库
create database test;
\\查看数据库
show databases;
\\选择数据库
use test;
\\创建表
create table student(
id int primary key auto_increment,
name varchar(20) not null,
age int not null,
sex varchar(2) not null,
department varchar(20),
tel char(11)
);
\\插入数据
insert into student(name,age,sex,department,tel) values
('张三',18,'男','计算机系','13512341234'),
('李四',19,'女','电子信息系','13612345678');
\\查询数据
select * from student;
\\更新数据
update student set age=20 where name='张三';
\\删除数据
delete from student where name='李四';
\\删除表
drop table student;
\\退出
exit;
在实践中大家还学习了MySQL的编程接口,使用Python编写的代码操作数据库。通过这个实训,大家得到了丰富的数据库经验,可以更好地应对各种数据库实际问题。