安装了Mysql以及SQLyog,将SQLyog和数据库做了连接. 学习了基础数据类型以及命令行语句 1 alter table `student` rename as `stu``lesson` 2 3 create table `student` ( 4 `id` int(4) auto_increment, 5 `name` varchar(30), 6 primary key(`id`) 7 )engine=innodb default charset=utf8 8 9 insert i…