mysql主要有建立資料庫,連線資料庫,建立表單,插入資料,查詢插入內容等等
– 建立學生管理系統的資料庫
create database zcs_db;
– 連線studentsystem這個資料庫
use zcs_db;
– 建立乙個學生表
create table user
(u_id int,
u_name varchar(50),
passwork varchar(2),
);– 檢視學生表結構
desc student;
– 插入五條資料
insert into user values(1,『』,'』);
insert into user values(2,『soulmate』,『47』);
– 查詢學生資訊
select * from student;
select * from student where
– 單字段主鍵約束
create table emp
(id int primary key,
name varchar(20),
dept_id int,
salary float
);– 插入資料,驗證主鍵
insert into emp values(1,『小明』,4,5000);
create table emp_1
(id int ,
name varchar(20),
dept_id int,
salary float,
primary key(id)
);– 多欄位聯合主鍵約束
create table emp_2
(id int ,
name varchar(20),
dept_id int,
salary float,
primary key(id,name)
);– 插入資料,驗證主鍵
insert into emp_2 values(1,『小明』,4,5000);
insert into emp_2 values(1,『小紅』,4,5000);
– 外來鍵約束
create table dept
(id int primary key,
name varchar(20),
location varchar(50)
)engine=innodb;
create table emp_3
(id int primary key,
name varchar(20),
dept_id int,
salary float,
constraint fk_emp_dept foreign key(dept_id) references dept(id)
)engine=innodb;
–insert into emp_3 values(1,『小明』,4,5000);
insert into dept values(4,『大資料4班』,『廣現』);
insert into emp_3 values(1,『小明』,4,5000);
– 非空約束
create table emp_4
(id int primary key,
name varchar(20) not null,
dept_id int,
salary float
);– 插入一條姓名null的語句
insert into emp_4 values(1,』』,4,5000);
insert into emp_4 values(2,null,4,5000);
– 唯一性約束
create table emp_5
(id int primary key,
name varchar(20) unique,
dept_id int,
salary float
);– 插入一條姓名null的語句
insert into emp_5 values(1,『你好』,4,5000);
insert into emp_5 values(2,null,4,5000);
insert into emp_5 values(3,』』,4,5000);
– 預設約束
create table emp_6
(id int primary key,
name varchar(20),
dept_id int,
salary float default 2000
);insert into emp_6(id,name,dept_id) values(2,『你好』,4);
– 屬性值自動增長約束
create table emp_7
(id int primary key auto_increment,
name varchar(20),
dept_id int,
salary float
);insert into emp_7(name,dept_id) values(『你好』,4);
– 修改表明名
alter table class_1 rename to tb_student_1;
–修改資料表的欄位名
alter table tb_student_1 change name st_name varchar(25);
alter table tb_student_1 change class_id st_class_id int(11);
–修改資料表字段的型別
alter table tb_student_1 modify st_name char(20);
–新增字段(預設新增在已有字段後面)
alter table student_4 add phone int;
–新增字段(新增到所有字段前面)
alter table student_4 add test_id int first;
–新增字段(新增到某個欄位的後面)
alter table student_4 add *** char(3) after st_name;
y–刪除資料表中的某個字段
alter table student drop test_id
–更改資料表的儲存引擎
alter table user_1 engine=myisam;
–建立乙個zcs_article文章表
create table zcs_article
(a_id int primary key auto_increment,
content varchar(250) not null,
weiter varchar(20) not null,
at_id int,
constraint fa_a_at foreign key (at_id) references zcs_article_type(at_id)
)engine=innodb;
–文章型別表
create table zcs_article_type
(at_id int primary key auto_increment,
at_name varchar(250) not null
)engine=innodb;
insert into zcs_article_type values(2,250);
insert into zcs_article_type values(3,250);
insert into zcs_article_type values(4,250);
insert into zcs_article_type values(5,250);
insert into zcs_article_type values(6,250);
insert into zcs_article values(22,』***』,222,2);
insert into zcs_article values(33,』***』,222,2);
insert into zcs_article values(44,』***』,222,2);
insert into zcs_article values(55,』***』,222,2);
insert into zcs_article values(66,』***』,222,2);
insert into zcs_article values(77,』***』,222,2);
insert into zcs_article values(88,』***』,222,2);
insert into zcs_article values(99,』***』,222,2);
insert into zcs_article values(21,』***』,222,2);
insert into zcs_article values(25,』***』,222,2);
select * from zcs_article_type;
select * from zcs_article;
做最好的自己
既然多元化的成功才是真正的成功,那麼,該如何追尋多元化的成功呢?多元化成功並不要求每個人都去刻意重複別人的成功之路,或者用別人的標準來評價和衡量自己,但它要求我們重視誠信的價值觀,擁有完整 均衡的人生態度,善於用智慧型選擇最佳的解決方案,並能不斷地追尋自己的理想和興趣 不斷地學習和實踐,妥善地處理好...
做最好的自己
我們會去看一部電影,無非是想從電影裡面看到我們自己,比如星空,比如失戀三十三天,比如那些年我們一起追過的女孩。只是毫無例外的,我們無法跟著電影裡的人物一起長大,你不是十三歲,你也不是十七歲,你失戀早就過了三十三天,你的身邊也沒能有過王小賤,回憶沒有變,離開的是我們自己,前兩天,乙個同事對我說,好像身...
做最好的自己 摘自李鎮西的《做最好的老師》
誰都渴望成為英雄豪傑 偉人巨匠,但受自身條件 社會環境等制約,真正成為藝術家 文學家 企業家的,只是少數。人比人,氣死人 因為你比的人,處於人類文明的金字塔尖,當然越比越覺得自己無能。但是,請別忘了,雖然也許你永遠成不了 家 但通過努力,你卻完全可以成為最好的你。有人說 每個人都是一棵樹。的確,我們...