创建数据库

creat table test(

#整数通常用于int

test_id int,

#十进制通常使用decimal

test_price decimal,

#普通文本通常使用。并使用Default指定默认值

test_name varchar(255) default "Xxx",

#大文本类型使用test

test_desc text,

#图片使用blob

test_img blob,

#日期类型使用DateTime

test_date datetime,

);

-----------------------------------------------------------------

mysql 支持的列类型

1.tinyint,smallint,mediumint,int,bigint

2.float,double

3.decimal(dec)

4.date

5.time

6.datetime

7.timestamp

8.year

9.char

10.varchar

11.binary(定长的二进制字符串类型。以二进制形式保存字符串)

12.varbinary

13.tinyblob,blob,mediumblob,longblob

14.tinytext,text,mediumtext,longtext

15.enum('value1','value2'...)//枚举类型(仅仅能是当中之中的一个)

16.set('value1','value2'...)//集合类型(能够是当中几个)

--------------------------------------------------------------------

#创建数据表。该数据表和user_info全然同样,数据也全然同样

create table hehe

as

select * from user_info;

---------------------------------------------------------------------

#改动表的结构的语法

alert table 表名

add(

#能够定义多个列定义

colum_name datatype [default expr],

...

);

---------------------------------------------------------------------

#为hehe数据表添加一个hehe_id字段,该字段类型为int





alter table hehe

add hehe_id int;

#为hehe数据包添加aaa,bbb字段。两个字段的类型都为varchar(25)

alter table hehe

add aaa varchar(25),bbb varchar(25);

----------------------------------------------------------------------

#将hehe表的hehe_id列改动为varchar(255)类型

alter table hehe

modify hehe_id varchar(255);

#将hehe表的bbb列改动为int类型

alter table hehe

modify bbb int;

----------------------------------------------------------------------

#删除指定的列

alter table hehe

drop column_name

#重命名数据表

alter table hehe

rename to wawa;

----------------------------------------------------------------------

#将wawa表的字段bbb字段重命名为ddd

alter table wawa

change bbb ddd int;

#删除表

drop table 表名

----------------------------------------------------------------------

数据库约束

not null

unique

primary key

foreign key

check

#not null约束

create table hehe(

#建立了非空约束,这意味着hehe_id不能够为null

hehe_id int not null,

#mysql为空约束不能指定名字

hehe_name varchar(25) default 'xyz' not null,

#以下列能够为空。默认值就是为null

hehe_gender varchar(28) null

);





---------------------------------------------------------------------

#添加非空约束

alter table hehe

modify hehe_gender  varchar(30) not null

#取消非空约束

alter table hehe

modify hehe_name varchar(3) null;

#取消非空约束。并指定默认值

alter table hehe

modify hehe_name varchar(255) default 'abc' null;

-------------------------------------------------------------------

unique约束

#建立表时创建唯一约束,使用列级约束语法建立约束

create table unique_test(

#建立了非空约束,着意味着test_id不能够为null

test_id int not null,

#建立了unique约束

test_name varchar(30) unique

);

#创建表时,使用表级约束语法建立约束

create table unique_test(

test_id int not null,

test_name varchar(30),

test_pass varchar(30),

#使用表级约束创建唯一约束

unique(test_name),

constraint test_uk unique(test_pass)

#constrain test1_uk unique(test_name,test_pass)

);

#改动唯一约束

alter table unique_test

add unique(test_name,test_pass);

#为表添加约束

alter table unique_test

modify test_name varchar(30) unique;

-------------------------------------------------------------------

primary key约束

create table primaryKey_test(

primaryKey_id int primary key,

test_name varchar(255)

);

create table primaryTest(

primary_id int not null,

primary_name varchar(29),

constraint pk_test primary key(primary_id)

);





#删除主键约束

alter table test

drop primary key;

#使用表级语法添加主键约束

alter table test

add primary key(test_id ,test_name);

#使用列级约束语法添加主键约束

alter table test

modify test_name varchar(30) primary key;

------------------------------------------------------------------

#为了保证从表參照的主表存在。通常应该先建立主表

create table teacher_table(

#auto_increment

teacher_id int auto_increment,

teacher_name varchar(255),


primary key(teacher_id)

);

create table student_table(

student_id int auto_increment primary key,

student_name varchar(255),

#指定java_teacher參照到teacher_table的teacher_id的列

java_teacher int references teacher_table(teacher_id)

#java_teacher int

#foreign key(java_teacher) references teacher_table(teacher_id)

#constraint student_teacher_fk foreign key(java_teacher) references

teacher_table(teacher_id)

);

---------------------------------------------------------------------------------------------

#check约束

create table test(

test_id int auto_increment primary key,

test_age int not null,

check(test_age>0 and test_age<120)

)

版权声明:本文博主原创文章,博客,未经同意不得转载。

mysql回想一下基础知识的更多相关文章

  1. mysql学习之基础知识

    一.什么是数据库 一般而言,数据库(Database)是按照数据结构来组织.存储和管理数据的仓库.我们也可以将数据存储在文件中,但是在文件中读写数据速度相对较慢.所以,使用关系型数据库管理系统(RDB ...

  2. MySQL系列(一)--基础知识(转载)

    安装就不说了,网上多得是,我的MySQL是8.0版本,可以参考:CentOS7安装MySQL8.0图文教程和MySQL8.0本地访问设置为远程访问权限 我的MySQL安装在阿里云上面,阿里云向外暴露端 ...

  3. mysql原生语句基础知识

    要操作数据库,首先要登录mysql: *mysql -u root -p 密码 创建数据库: *create database Runoob(数据库名); 删除数据库: *drop database ...

  4. mysql的优化基础知识

    1.查看各种SQL执行的频率 mysql> show status like 'Com_select';--Com_insert,Com_delete,connections(试图连接mysql ...

  5. mysql的部分基础知识....

  6. mysql基础知识详解

    分享一些mysql数据库的基础知识. 1.每个客户端连接都会从服务器进程中分到一个属于它的线程.而该连接的相应查询都都会通过该线程处理.2.服务器会缓存线程.因此并不会为每个新连接创建或者销毁线程.3 ...

  7. 深入理解mysql之BDB系列(1)---BDB相关基础知识

        深入理解mysql之BDB系列(1) ---BDB相关基础知识 作者:杨万富   一:BDB体系结构 1.1.BDB体系结构 BDB总体的体系结构如图1.1所看到的,包括五个子系统(见图1.1 ...

  8. 深入了解mysql它BDB系列(1)---BDB基础知识

        深入了解mysql它BDB系列(1) ---BDB关基础知识 作者:杨万富   一:BDB体系结构 1.1.BDB体系结构 BDB总体的体系结构如图1.1所看到的.包括五个子系统(见图1.1中 ...

  9. MySQL系列(一)--基础知识大总结

    MySQL系列(一)---基础知识大总结 前言:本文主要为mysql基础知识的大总结,mysql的基础知识很多,这里只是作为简单的介绍,但是具体的细节还是需要自行搜索.当然本文还有很多遗漏的地方,后续 ...

随机推荐

  1. 开源搜索引擎评估:lucene sphinx elasticsearch

    开源搜索引擎评估:lucene sphinx elasticsearch 开源搜索引擎程序有3大类 lucene系,java开发,包括solr和elasticsearch sphinx,c++开发,简 ...

  2. 以JTextPanel为例Swing的鼠标事件详解

    如下界面可以通过该界面研究一下Swing的鼠标事件: 图中用红粗线圈起来的为JtextPanel,该Panel添加了鼠标事件监听器,鼠标事件监听器有三种,分别为MouseWheelListener,M ...

  3. 百度地图之UI控制

    在本文中主要介绍百度地图UI控制功能,即控制地图是否有缩放.平移.双击放大.旋转.俯视的功能以及控制是否显示内置缩放组件.指南针位置等.在文中采用标签监听使每个控制功能的方法见名知义,代码原型来源百度 ...

  4. elf格式分析

    近期研究了一下elf文件格式,发现好多资料写的都比較繁琐,可能会严重打击学习者的热情,我把自己研究的结果和大家分享,希望我的描写叙述可以简洁一些. 一.基础知识 elf是一种文件格式,用于存储Linu ...

  5. 用jsp写注冊页面

    包含单选框.多选框.session的应用,页面自己主动跳转,中文乱码的处理,入门级 对于中文乱码的处理,注意几点:注冊页面数据提交方式为post不能忘了写,页面编码方式为gbk,处理提交信息的doRe ...

  6. Ctrl-A全选

    Ctrl-A全选这点事(C#,WinForm)   所有的文本框,不管单行多行都Ctrl-A全选就好了吧?是啊,很方便.Windows的软件基本都是这样.可为什么我们自己制作的WinForm就默认不是 ...

  7. php学习之道:php中soap的使用实例以及生成WSDL文件,提供自己主动生成WSDL文件的类库——SoapDiscovery.class.php类

    1. web service普及: Webservice soap wsdl差别之个人见解 Web Service实现业务诉求:  Web Service是真正"办事"的那个,提供 ...

  8. 快速入门github的方法

    Sometimes you just need a little help. ps:官方的帮助,原汁原味的帮助!强烈推荐 https://help.github.com/ Pro Git Book C ...

  9. 读懂Java中的Socket编程(转)

    Socket,又称为套接字,Socket是计算机网络通信的基本的技术之一.如今大多数基于网络的软件,如浏览器,即时通讯工具甚至是P2P下载都是基于Socket实现的.本文会介绍一下基于TCP/IP的S ...

  10. EF 打造冲不掉的标签

    应用场景: 在用EF的Datebase Fitst模式开发时,实体都是有T4文件根据数据库来生成,并且是每次保存都会重新生成,如果我们在有T4生成的实体类上加上验证标签,那么以保存就会丢失, 解决方案 ...