周希俭数据库大神分享数据库相关操作

MySQLl数据库基础知识:

MySQL有三大类数据类型, 分别为数字、日期\时间、字符串, 这三大类中又更细致的划分了许多子类型:

数字类型
整数: tinyint、smallint、mediumint、int、bigint
浮点数: float、double、real、decimal
日期和时间: date、time、datetime、timestamp、year
字符串类型
字符串: char、varchar
文本: tinytext、text、mediumtext、longtext
二进制(可用来存储图片、音乐等): tinyblob、blob、mediumblob、longblob

删除表中数据
delete from 表名称 where 删除条件;
表的修改

添加列
基本形式: alter table 表名 add 列名 列数据类型 [after 插入位置];
示例:

在表的最后追加列 address: alter table students add address char(60);

在名为 age 的列后插入列 birthday: alter table students add birthday date after age;

修改列
alter table 表名 change 列名称 列新名称 新数据类型;
示例:

将表 tel 列改名为 telphone: alter table students change tel telphone char(13) default “-”;

将 name 列的数据类型改为 char(16): alter table students change name name char(16) not null;

alter table 表名 drop 列名称; #删除表中的列
alter table 表名 rename 新表名; #重命名表
drop table 表名; #删除表drop database 数据库名; #删除数据库

2,type:查询类型

作用:
    -可以 判断出,全表扫描还是索引扫描 (all就是全索引扫描,其他的就是索引扫描)
    -对于索引扫描 来讲,又可以细化分,可以判断出事哪一种类 的索引扫描 
type的具体类型介绍:
    All :全表扫描
    Index:全索引扫描
        -例子:desc select countrycode from city;
    range:索引范围扫描
        < ,>,<=,>=,in,or ,between ,and,like 'CH%'
in或者or改写成union 
select *from city where countrycode='CHN'
union all 
select *from city where countrycode='USA';
ref:辅助索引的等值查询
select *from city where countrycode='CHN';
eq_ref:多表链接查询(join on)
const,system主键或唯一键等值查询

3,创建表

使用 create table 语句可完成对表的创建, create table 的常见形式:

create table 表名称(列声明);

以创建 students 表为例, 表中将存放 学号(id)、姓名(name)、性别(sex)、年龄(age)、联系电话(tel) 这些内容:

create table students

id int unsigned not null auto_increment primary key,
name char(8) not null,
sex char(4) not null,
age tinyint unsigned not null,
tel char(13) null default “-”
);
create table tablename(columns) 为创建数据库表的命令, 列的名称以及该列的数据类型将在括号内完成;

括号内声明了5列内容, id、name、sex、age、tel为每列的名称, 后面跟的是数据类型描述, 列与列的描述之间用逗号(,)隔开;

以 “id int unsigned not null auto_increment primary key” 行进行介绍:

“id” 为列的名称;
“int” 指定该列的类型为 int(取值范围为 -8388608到8388607), 在后面我们又用 “unsigned” 加以修饰, 表示该类型为无符号型, 此时该列的取值范围为 0到16777215;
“not null” 说明该列的值不能为空, 必须要填, 如果不指定该属性, 默认可为空;
“auto_increment” 需在整数列中使用, 其作用是在插入数据时若该列为 NULL, MySQL将自动产生一个比现存值更大的唯一标识符值。在每张表中仅能有一个这样的值且所在列必须为索引列。
“primary key” 表示该列是表的主键, 本列的值必须唯一, MySQL将自动索引该列。

你可能感兴趣的:(周希俭数据库大神分享数据库相关操作)