标签:
一直没有把学习笔记写成网络日志的习惯,一是觉得不大方便;二是觉得查找起来没有纸质的手感(女生的特质吧)。但是呢,近期要准备校招,为了总结大学期间专业课的学习内容和自学的一些知识,所以要开始写网络笔记了。由于个人技术有限,若有错误的地方,请大家指正。
一、关于MySQL数据库的操作
创建、修改、删除数据库
create database if not exists test; //创建一个名为test的数据库 use test; //使用USE命令指定当前数据库 alter database test //修改数据库test的默认字符集和校对规则 default character set gbk default collate gb2312_chinese_ci; drop database if exists test; //删除数据库test
二、MySQL表操作
创建、修改、删除表
show tables; //该命令可以查看当前数据库中有哪些表 create table student //创建一个名字为student的表 ( 学号 char(6) not null primary key, 姓名 char(8) not null, 性别 tinyint(1) not null default 1, 出生日期 date not null, 照片 blob null, 备注 text null );
//alter table用于更改原有表的结构 alter table student add 毕业院校 varchar not null after 姓名, //增加毕业院校这一列在姓名的后面 drop column 照片; //删除照片这一列 rename table student to stu; //将student表名更改为stu drop table if exists stu; //删除表stu
二、表记录的操作
插入、修改、删除记录
use test insert into student values(‘081101‘,‘王林‘,‘山东工商学院‘,1,‘1993-02-08‘);
replace into student values(‘081101‘,‘张三‘,‘武汉大学‘,0,‘1992-01-12‘);
update student set 总学分 = 总学分 +10; //将student表中的所有学生的总学分增加10 update user,vip //同时对表user和表vip记录进行修改 set user.password=‘111‘,vip.password=‘222‘ where user.id=vip.id;
use test delete from student //删除test数据库里表student中学分小于60的学生记录 where 总学分<60;
btw:今天做数据库的题目时,有个题目是查看MySQL表结构的语句,当时只想起decribe table_name;其实总共有三种方法:
标签:
原文地址:http://www.cnblogs.com/rosestudy/p/4820234.html