91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

MySQL數據庫的一些總結和講義

發布時間:2020-04-25 14:45:40 來源:億速云 閱讀:254 作者:三月 欄目:MySQL數據庫

本文主要給大家介紹MySQL數據庫的一些總結和講義,希望可以給大家補充和更新些知識,如有其它問題需要了解的可以持續在億速云行業資訊里面關注我的更新文章的。

 

數據導入與導出

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

  把/etc/passwd 數據導入到表user中
  a.創建表user(表中字段要與導入的數據中字段相同) 
    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 數據放入默認目錄/var/lib/mysql-files
    cp /etc/passwd /var/lib/mysql-files/

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

    d.驗證
    select * from user;

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

    #把uid小于100的數據導出到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 庫名.表名;        /查詢表所有字段數據
select 字段名列表 from 庫名.表名     /查詢個別字段數據
#select name ,uid from user;

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

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

范圍內匹配
(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字段數據  ,其中有很多重復值
#select distinct shell from user  /把重復的值只顯示一次,可以快速查看此字段中都有那些數據

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

數學運算操作   +   -   *   /   % 
字段類型必須是數值類型
#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開頭的所有數據
#select name from user where name like '%r%';   /查詢name字段包含r的數據
#select name from user where name like '%t';    /查詢name字段t結尾的所有數據
#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字段中有數字的數據
#select name from user where name regexp '^[0-9]';  /查詢name字段中 數字開頭的數據
#select name from user where name regexp '^r';     /查詢name字段中 r開頭的數據
#select name from user where name regexp 'r.*t';  /查詢name字段中,r t之間包含0個或多個字符的數據

統計函數   字段得是數值類型

(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(字段名) 統計個數
#select sum(uid) from user;   /不統計字段值為null  

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

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

限制查詢顯示行數 
(a)limit 數字n; 顯示前n行
#select * from user limit 3;
#select * from user where uid between 10 and 50 limit 3;
(b)limit 數字m,數字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查詢的結果作為新表的結構及數據,
#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的數據
select * from 表A left join 表B on 條件;
#select * from user1 left join user2 on user1.uid=user2.uid;
(b)右連接查詢 以左邊表(B)為主查詢某個條件下 表A,表B的數據
#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數據庫的一些總結和講義,希望能給大家在實際運用中帶來一定的幫助。本文由于篇幅有限,難免會有不足和需要補充的地方,如有需要更加專業的解答,可在官網聯系我們的24小時售前售后,隨時幫您解答問題的。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

贡觉县| 班玛县| 莲花县| 汉寿县| 富源县| 石泉县| 华阴市| 革吉县| 江安县| 海林市| 同仁县| 铅山县| 融水| 无为县| 梅州市| 龙口市| 贵州省| 石家庄市| 海口市| 靖江市| 社旗县| 年辖:市辖区| 崇礼县| 海门市| 南昌市| 泉州市| 含山县| 禹州市| 宝应县| 浦江县| 介休市| 成安县| 庄浪县| 上林县| 郎溪县| 汾阳市| 镇原县| 夏津县| 新竹县| 建瓯市| 施甸县|