mysql数据库实训报告

更新时间:01-23 教程 由 忘爱。 分享

本次实训我们学习了MySQL数据库的基本操作和常用语句,在实践中深入了解了数据库的创建、表的设计、数据的增删改查等操作。

\\连接数据库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编写的代码操作数据库。通过这个实训,我们得到了丰富的数据库经验,可以更好地应对各种数据库实际问题。

声明:关于《mysql数据库实训报告》以上内容仅供参考,若您的权利被侵害,请联系13825271@qq.com
本文网址:http://www.25820.com/tutorial/14_5786599.html