程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> mysql基礎知識回顧

mysql基礎知識回顧

編輯:MySQL綜合教程

mysql基礎知識回顧


創建數據庫
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)
)

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved