丰满少妇女人a毛片视频-酒色成人网-日韩欧美一-日韩精品一区二区av在线观看-成人久久免费-欧美精品一二三四区-国产午夜免费-亚洲男人第一天堂-一区二区三区福利视频-午夜激情影院-av中文天堂在线-免费一区二区-欧美日韩xxx-91区视频-亚洲另类激情专区小说图片-黄色的网站在线观看-香蕉精品在线

高分網(wǎng) > 答案大全 > 其它答案 >

mysql數(shù)據(jù)庫知識點

時間: 炎婷2 其它答案

  MySQL數(shù)據(jù)庫考試要點整理

  1.數(shù)據(jù)庫創(chuàng)建:Create database db_name;

  數(shù)據(jù)庫刪除:Drop database db_name; 刪除時可先判斷是否存在,寫成:drop database if exits db_name

  2.建表:創(chuàng)建數(shù)據(jù)表的語法:create table table_name (字段1 數(shù)據(jù)類型,字段2 數(shù)據(jù)類型);

  例:create table mytable (id int,username char(20));

  刪表:drop table table_name; 例:drop table mytable;

  8.添加數(shù)據(jù):Insert into 表名 [(字段1,字段2,….)] values (值1,值2,…);

  如果向表中的每個字段都插入一個值,那么前面 [ ] 括號內(nèi)字段名可寫也可不寫

  例:insert into mytable (id,username) values (1,’zhangsan’);

  9.查詢:查詢所有數(shù)據(jù):select * from table_name;

  查詢指定字段的數(shù)據(jù):select 字段1,字段2 from table_name;

  例:select id,username from mytable where id=1 order by desc;

  10.更新指定數(shù)據(jù),更新某一個字段的數(shù)據(jù)(注意,不是更新字段的名字) Update table_name set 字段名=’新值’ [, 字段2 =’新值’,…][where id=id_num] [order by 字段 順序]

  例:update mytable set username=’lisi’ where id=1;

  Order語句是查詢的順序,如:order by id desc(或asc),順序有兩種:desc倒序(100—1,即從最新數(shù)據(jù)往后查詢),asc(從1-100),Where和order語句也可用于查詢select 與刪除delete

  11.刪除表中的信息:

  刪除整個表中的信息:delete from table_name;

  刪除表中指定條件的語句:delete from table_name where 條件語句 ; 條件語句如:id=3;

  12.創(chuàng)建數(shù)據(jù)庫用戶

  一次可以創(chuàng)建多個數(shù)據(jù)庫用戶如:

  CREATE USER username1 identified BY ‘password’,username2 IDENTIFIED BY ‘password’

  13.用戶的權(quán)限控制:grant

  庫,表級的權(quán)限控制:將某個庫中的某個表的控制權(quán)賦予某個用戶

  Grant all ON db_name.table_name TO user_name [ indentified by ‘password’ ];

  14.表結(jié)構(gòu)的修改

  (1)增加一個字段格式:

  alter table table_name add column (字段名 字段類型);

  (2)指定字段插入的位置:

  alter table table_name add column 字段名 字段類型 after 某字段;

  刪除一個字段:

  alter table table_name drop字段名;

  (3)修改字段名稱/類型

  alter table table_name change 舊字段名 新字段名 新字段的類型;

  (4)改表的名字

  alter table table_name rename to new_table_name;

  (5)一次性清空表中的所有數(shù)據(jù)

  truncate table table_name; 此方法也會使表中的取號器(ID)從1開始

  15.增加主鍵,外鍵,約束,索引

 ?、?約束(主鍵Primary key、唯一性Unique、非空Not Null) ② 自動增張 auto_increment

 ?、弁怄IForeign key-----與reference table_name(col_name列名)配合使用,建表時單獨使用

 ?、?刪除多個表中有關(guān)聯(lián)的數(shù)據(jù)----設置foreign key 為set null ---具體設置參考幫助文檔

  16.查看數(shù)據(jù)庫當前引擎

  SHOW CREATE TABLE table_name;

  修改數(shù)據(jù)庫引擎

  ALTER TABLE table_name ENGINE=MyISAM | InnoDB;

  17.SQL語句運用實例:

  --1 建users表

  create table users

  (id int primary key auto_increment,

  nikename varchar(20) not null unique,

  password varchar(100) not null,

  address varchar(200),

  reg_date timestamp not null default CURRENT_TIMESTAMP);

  --2 建articles表,在建表時設置外鍵

  create table articles (id int primary key auto_increment,content longtext not null,userid int,constraint foreign key (userid) references users(id) on delete set null);

  --2.1 建articles表,建表時不設置外鍵

  create table articles (id int primary key auto_increment,content longtext not null,userid int);

  --2.2 給articles表設置外鍵

  alter table articles add constraint foreign key (userid) references users(id) on delete set null;

  --3.向users表中插入數(shù)據(jù),同時插入多條

  insert into users (id,nikename,password,address) values (1,'lyh1','1234',null),(10,'lyh22','4321','湖北武漢'),(null,'lyh333','5678', '北京海淀');

  --4.向article中插入三條數(shù)據(jù)

  insert into articles (id,content,userid) values (2,'hahahahahaha',11),(null,'xixixixixix',10),(13,'aiaiaiaiaiaiaiaiaiaiaiaia',1),(14,'hohoahaoaoooooooooo',10);

  --5.進行多表查詢,選擇users表中ID=10的用戶發(fā)布的所有留言及該用戶的所有信息

  select articles.id,articles.content,users.* from users,articles where users.id=10 and articles.userid=users.id order by articles.id desc;

  --6.查看數(shù)據(jù)庫引擎類型

  show create table users;

  --7.修改數(shù)據(jù)庫引擎類型

  alter table users engine=MyISAM; ---因為users表中ID被設置成外鍵,執(zhí)行此句會出錯

  --8.同表查詢,已知一個條件的情況下.查詢ID號大于用戶lyh1的ID號的所有用戶

  select a.id,a.nikename,a.address from users a,users b where b.nikename='lyh1' and a.id>b.id;

  ------也可寫成

  select id,nikename,address from users where id>(select id from users where nikename='lyh1');

  9.顯示年齡比領導還大的員工:

  select a.name from users a,users b where a.managerid=b.id and a.age>b.age;

  查詢編號為2的發(fā)帖人:先查articles表,得到發(fā)帖人的編號,再根據(jù)編號查users得到的用戶名。

  用關(guān)聯(lián)查詢:

  select * from articles,users得到笛卡兒積,再加order by articles.id以便觀察

  使用select * from articles,users where articles.id=2 篩選出2號帖子與每個用戶的組合記錄

  再使用select * from articles,users where articles.id=2 and articles.userid=users.id選出users.id等于2號帖的發(fā)帖人id的記錄

  只取用戶名:select user where user.id=(select userid from articles where article.id =2)

  找出年齡比小王還大的人:假設小王是28歲,先想找出年齡大于28的人 select * from users where age>(select age from users where name='xiaowang');

  *****要查詢的記錄需要參照表里面的其他記錄:

  select a.name from users a,users b where b.name='xiaowang' and a.age>b.age

  表里的每個用戶都想pk一下:select a.nickname,b.nickname from users a,users b where a.id>b.id ;

  更保險的語句:select a.nickname,b.nickname from (select * from users order by id) a,(select * from users order by id) b where a.id>b.id ;

  再查詢某個人發(fā)的所有帖子

  select b.* from articles a,articles b where a.id=2 and a.userid=b.userid

  說明:表之間存在著關(guān)系,ER概念的解釋,用access中的示例數(shù)據(jù)庫演示表之間的關(guān)系,只有innodb引擎才支持foreign key,mysql的任何引擎目前都不支持check約束。

  看了“mysql數(shù)據(jù)庫知識點”的還看了:

1.2014年計算機二級mysql數(shù)據(jù)庫重點復習

2.關(guān)于面試PHP常見的面試試題

3.計算機工程論文畢業(yè)論文

4.計算機專業(yè)論文范文大全

5.怎么自學電腦編程

52001 开阳县| 易门县| 夏河县| 孝昌县| 都安| 当涂县| 宣汉县| 苗栗县| 怀宁县| 漳浦县| 团风县| 合川市| 疏附县| 桦甸市| 瑞昌市| 三门峡市| 吴堡县| 保定市| 离岛区| 新平| 阿巴嘎旗| 荆州市| 类乌齐县| 且末县| 额敏县| 商南县| 临潭县| 玛多县| 彭阳县| 大方县| 色达县| 扶沟县| 新田县| 福鼎市| 杭州市| 乌拉特前旗| 米泉市| 雷波县| 鹿邑县| 桦甸市| 策勒县|