成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

MySQL數(shù)據(jù)庫的一些總結和講義

本文主要給大家介紹MySQL數(shù)據(jù)庫的一些總結和講義,希望可以給大家補充和更新些知識,如有其它問題需要了解的可以持續(xù)在創(chuàng)新互聯(lián)行業(yè)資訊里面關注我的更新文章的。

站在用戶的角度思考問題,與客戶深入溝通,找到北戴河網(wǎng)站設計與北戴河網(wǎng)站推廣的解決方案,憑借多年的經驗,讓設計與互聯(lián)網(wǎng)技術結合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:成都網(wǎng)站設計、網(wǎng)站建設、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣、域名注冊、網(wǎng)頁空間、企業(yè)郵箱。業(yè)務覆蓋北戴河地區(qū)。

 

數(shù)據(jù)導入與導出

(1)數(shù)據(jù)導入mysql>load data infile "目錄/文件名" into table 表名    /默認目錄為 /var/lib/mysql-files,可修改配置文件改變默認目錄,如不修改配置文件,默認且一定要在這個目錄下
    >field terminated by "字段間隔符"            /導入的文本數(shù)據(jù)的字段間隔符號         
    >lines terminated by "\n"               /導入的文本數(shù)據(jù)的行結束符號
mysql> show variables like "secure_file_priv"; 查看默認目錄
/etc/my.cnf
secure_file_priv="/myfile"

  把/etc/passwd 數(shù)據(jù)導入到表user中
  a.創(chuàng)建表user(表中字段要與導入的數(shù)據(jù)中字段相同) 
    create table user(
    >name char(15),
    >passwd char(8),
    >uid int,
    >gid int,
    >comment varchar(50),
    >homedir varchar(30),
    >shell varchar(30),
    >index(name),
    >unique index(uid)
    >);

    b.把/etc/passwd 數(shù)據(jù)放入默認目錄/var/lib/mysql-files
    cp /etc/passwd /var/lib/mysql-files/

    c.數(shù)據(jù)導入
    load data infile "/var/lib/mysql-files/passwd" into table user \
    >fields terminated by ":" lines terminated by "\n";  /此表中字段間隔符為":",行結束符號為"\n".

    d.驗證
    select * from user;

    (2)數(shù)據(jù)導出   把表記錄通過sql查詢存儲到系統(tǒng)文件中
    >sql查詢   into outfile "目錄/文件名" fields terminated by "字段間隔符" lines terminated by "行結束符號"
                    /目錄默認/var/lib/mysql-files 如不修改配置文件,默認且一定要在這個目錄下

    #把uid小于100的數(shù)據(jù)導出到user1.txt文件中
   >select * from user where uid < 100 into outfile "/var/lib/mysql-files/user.txt" \
   >fields terminated by "*"\     /字段間隔符為 *
   >lines terminated by "#"       /行間隔符為 #

#################################################################################

管理表記錄

增

insert into 庫名.表名 values(值列表),(值列表);            /給所有字段賦值
insert into 庫名.表名(字段名列表) values(值列表),(值列表);  /只給個別字段賦值

查

select * from 庫名.表名;        /查詢表所有字段數(shù)據(jù)
select 字段名列表 from 庫名.表名     /查詢個別字段數(shù)據(jù)
#select name ,uid from user;

select * from 庫名.表名 where 條件;
#select * from user where name="root";  /查詢name字段為root的所有數(shù)據(jù)

條件匹配的表示方式: 
數(shù)值比較   >  >=   <   <=  =  !=
字符比較   =   !=

范圍內匹配
(a) 字段名 in (值列表)     在...里
#select * from user where name in ("root","tom","apache");  /字段名匹配幾個 查詢幾條
(b)字段名 between 值1 and 值2   在...之間
#select * from user where uid between 10 and 50;   /字段名匹配幾個 查詢幾條
(c)not in
#select * from user where name not in ("root","tom","apache"); /相當與 in 的取反,匹配的都不顯示

匹配空/非空
(a) is null
#select * from user where name is null;
(b) is not null
#select * fro user where name is not null;

不顯示重復值
(a)distinct 字段名
#select shell from user; /查詢表中的shell字段數(shù)據(jù)  ,其中有很多重復值
#select distinct shell from user  /把重復的值只顯示一次,可以快速查看此字段中都有那些數(shù)據(jù)

邏輯匹配  :   有多個條件
邏輯與  and    多個條件必須都成立
邏輯或  or        多個條件有一個條件成立即可
邏輯非  !         取反
#select name from user where name="tom" and uid=500;  /查詢 name字段為tom 且uid=500 ,顯示name字段數(shù)據(jù) 條件都必須成立
#select name from user where name="root" or uid=100;  /查詢name字段數(shù)據(jù) 其條件為 name=“root” 或者uid=100

數(shù)學運算操作   +   -   *   /   % 
字段類型必須是數(shù)值類型
#select uid,gid,uid+gid he from user; /查詢 uid,gid 和uid+gid 和 的字段信息   he(uid+gid的值的字段名,可變)

模糊查詢
where 字段名 like '表達式'
(a)"_" 表示一個字符
#select name from user where name like 'r_o_t';    /一個'_'表示一個字符
(b) % 0個或多個字符
#select name from user where name like 'r%';    /查詢name字段r開頭的所有數(shù)據(jù)
#select name from user where name like '%r%';   /查詢name字段包含r的數(shù)據(jù)
#select name from user where name like '%t';    /查詢name字段t結尾的所有數(shù)據(jù)
#select name from user where name liek 'r%' or name like '%t'; /以r開頭或者t結尾

正則匹配
where 字段名 regexp '正則表達式'
#select name from user where name regexp '[0-9]';  /查詢name字段中有數(shù)字的數(shù)據(jù)
#select name from user where name regexp '^[0-9]';  /查詢name字段中 數(shù)字開頭的數(shù)據(jù)
#select name from user where name regexp '^r';     /查詢name字段中 r開頭的數(shù)據(jù)
#select name from user where name regexp 'r.*t';  /查詢name字段中,r t之間包含0個或多個字符的數(shù)據(jù)

統(tǒng)計函數(shù)   字段得是數(shù)值類型

(a)sum(字段名) 求和
#select sum(uid) from user;
(b)avg(字段名) 平均值
#select avg(uid) from user;
(c)max(字段名) 最大值
#select max(uid) from user;
(d)min(字段名) 最小值
#select min(uid) from user;
(e)count(字段名) 統(tǒng)計個數(shù)
#select sum(uid) from user;   /不統(tǒng)計字段值為null  

查詢排序
>sql查詢 order by 字段名 /默認升序   desc 降序
#select uid from user order by uid;  /查詢uid字段數(shù)據(jù)并升序排序
#select uid from user order by uid desc;  /查詢uid字段數(shù)據(jù)并降序排序
#select * from user order by uid;  /查詢表中所有數(shù)據(jù)并以uid升序排序

查詢分組
>sql查詢 group by 字段名    /把相同的數(shù)據(jù)放在group組里,相當于不顯示重復值
#select shell from user group by shell; 

限制查詢顯示行數(shù) 
(a)limit 數(shù)字n; 顯示前n行
#select * from user limit 3;
#select * from user where uid between 10 and 50 limit 3;
(b)limit 數(shù)字m,數(shù)字n;  顯示m行后的n行
#select * from user limit 1,2; 顯示第1行后的兩行內容 相當于顯示2-3行內容
#select * from user limit 1,1; 顯示第二行內容

嵌套查詢 把內層的查詢結果作為外層的查詢條件
select * from user where 條件 (select * from 表名 where 條件);
#select * from user where name in (select name from user where uid<10);
#select name,uid from user where uid > (select avg(uid) from user);

復制表  
作用:快速建表 、 備份表
create table 表名 sql查詢
#create table user1 select name,uid,homedir from user limit 3; /把sql查詢的結果作為新表的結構及數(shù)據(jù),
#create table user2 select name,uid,shell from user limit 4;

多表查詢
select 字段名列表 from 表名列表;笛卡爾集
#select * from user1,user2;   /顯示為 3*4 12 行,user1表的每一行對應user2表的每一行
#select * from user1,user2 where user1.name=user2.name and user1.uid=user2.uid; /顯示 user1 與user2 name,uid字段相等的行

連接查詢
(a)左連接查詢  以左邊表(A)為主查詢某個條件下 表A,表B的數(shù)據(jù)
select * from 表A left join 表B on 條件;
#select * from user1 left join user2 on user1.uid=user2.uid;
(b)右連接查詢 以左邊表(B)為主查詢某個條件下 表A,表B的數(shù)據(jù)
#select * from user1 right join user2 on user1.uid=user2.uid;

改
修改某字段內的記錄
(a)update 表名 set 字段名="";
#update user1 set uid=3;
(b)update 表面 set 字段名="" where 條件;
#update user2 set uid=2 where name="root";

刪
刪除記錄
(a)delete from 表名;  /刪除表中記錄
#delete from user1;
(b)delete from 表名 where 條件; /刪除某個條件下的一行記錄

#delete from user1 where name="root";

看了以上關于MySQL數(shù)據(jù)庫的一些總結和講義,希望能給大家在實際運用中帶來一定的幫助。本文由于篇幅有限,難免會有不足和需要補充的地方,如有需要更加專業(yè)的解答,可在官網(wǎng)聯(lián)系我們的24小時售前售后,隨時幫您解答問題的。

當前名稱:MySQL數(shù)據(jù)庫的一些總結和講義
分享網(wǎng)址:http://jinyejixie.com/article20/gggojo.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設計公司品牌網(wǎng)站建設、ChatGPT、小程序開發(fā)、商城網(wǎng)站網(wǎng)頁設計公司

廣告

聲明:本網(wǎng)站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設
濮阳县| 宝丰县| 吴江市| 襄汾县| 玉林市| 五家渠市| 武城县| 信宜市| 白朗县| 丁青县| 吐鲁番市| 斗六市| 城口县| 望城县| 监利县| 无锡市| 开江县| 萍乡市| 大荔县| 荣昌县| 古交市| 松桃| 清水县| 西丰县| 吉木萨尔县| 嘉峪关市| 衢州市| 布尔津县| 灵石县| 睢宁县| 双鸭山市| 集安市| 兴化市| 武安市| 南投县| 兴宁市| 云和县| 南乐县| 湟源县| 辰溪县| 灵石县|