SQL學習

  • 歡迎關注個人公衆號
    公衆號

一、SQL簡介

SQL:Structured Query Language的縮寫(結構化查詢語言)是一種定義、操做、管理關係數據庫的句法

  • 結構化查詢語言的工業標準由ANSI(美國國家標準學會,ISO的成員之一)維護。java

    • DQL:數據查詢語言
    • DML:數據操做語言
    • DDL:數據定義語言
    • DCL:數據控制語言
    • TPL:事務處理語言
    • CCL:指針控制語言
  • 優勢:最大的優勢共享數據、安全性有很大的保障,可是也不是絕對的安全(黑客)、操做數據很容易mysql

## 二、經常使用數據庫sql

Oracle DB2 Informix Sybase SQL Server ProstgreSQL面向對象數據庫 MySQL Access SQLite等數據庫

三、數據庫服務器、數據庫和表的關係

  • 數據庫服務器、數據庫和表的關係如圖
    image.png
    * 表的一行稱之爲一條記錄,表中一條記錄對應一個java對象的數據

image.png

四、DDL數據定義語言

數據庫的操做

  • 建立數據庫 create database mydb ;
  • 查看建立數據庫的語句 show create database mydb ;
  • 改變當前的數據庫 use mydb ;
  • 刪除數據庫 drop database mydb ;
  • 查看全部的數據庫 show databases ;
  • 修改數據庫mydb1的字符集爲utf8 alter database mydb1 character set utf8;
  • 建立數據庫mydb1,字符集用gbk create database mydb1 character set gbk ;
  • 查看數據庫中全部的校對規則 show collation ;
  • 查看中文的校驗規則 show collation like '%gb%' ;
  • 建立數據庫mydb2,字符集用gbk,校驗規則用gbk_bin create database mydb2 character set gbk collate gbk_bin ;

針對表的操做

  • 建立表t create table t( id int , name varchar(30) ) ;
  • 查看建立表的源碼 show create table t ;
  • 建立表t1,使用字符集gbk create table t1( id int , name varchar(30) )character set gbk ;
  • 建立表t4 create table t4 ( id int , name varchar(30), optime timestamp ) ;

插入數據

  • 設置客戶端的字符集爲gbk set character_set_client=gbk;
  • 設置結果集的字符集爲gbk set character_set_results=gbk ; insert into t4(id,name) values(1,'張無忌') ; insert t4(id,name) values(2,'喬峯') ; into 能夠省略
  • 省略字段,意味着全部的字段都必須給值(自增例外) insert t4 values(3,'楊過','2014-4-3') ;

更新

  • 將表t4的第三條記錄姓名字段改成楊康update t4 set name='楊康' where id = 3 ;
  • 將全部記錄的名字都改成東方不敗 update t4 set name = '東方不敗' ;
  • 修改多個字段 update t4 set id=6,name='蕭峯' where id = 2 ;

刪除

  • delete from t4 where id = 4 ;
  • 刪除全部的記錄 delete from t4 ;
  • 刪除全部的記錄 truncate table t4 ;
  • 給表t4增長一個字段address alter table t4 add address varchar(100) ;
  • 刪除字段address alter table t4 drop column address ;
  • 查看錶的結構 desc t4 ;

建立一個學生表安全

  • create table stu ( id int primary key, // 主鍵約束 name varchar(30) unique, // 惟一約束 sex char(2) not null, //非空約束 age int check (age > 0 and age < 100),// 檢查約束 address varchar(50) default '北京' //默認約束 ) ;bash

  • insert into stu values(1,'張無忌','男',20,'北京') ; insert into stu values(2,'小龍女','女',18,'古墓') ; insert into stu values(3,'黃蓉','女',15,'桃花島') ; insert into stu values(4,'韋小寶','男',24,'揚州') ; insert into stu values(5,'喬峯','男',34,'雁門關') ; insert into stu values(6,'張果老','男',30,'雁門關') ; insert into stu values(7,'老張','男',38,'黒木崖') ; insert into stu values(8,'張','男',34,'桃花島') ; insert into stu values(9,'韋小寶','女',24,'新東方') ; insert into stu(id,name,sex,age) values(10,'令狐沖','男',27) ;服務器

  • 查看全部數據 select * from stu ;函數

  • 查看小龍女的信息 select * from stu where id = 2 ; select * from stu where name='小龍女' ;ui

  • 查看年齡在20~30之間的人 select * from stu where age >=20 and age <=30 ; select * from stu where age between 20 and 30 ; # 包括20和30 #查看全部的的姓名 select name from stu ;spa

  • 查看全部的的姓名,年齡,性別 select name,age,sex from stu ;

模糊查詢

  • select * from 表名 where 字段名 like 字段表達式 % 表示任意字符數 _ 表示任意的一個字符 [] 表示在某個區間
  • 查詢全部以張開頭的人 select * from stu where name like '張%' ;
  • 查詢姓名中含有張這個字的人 select * from stu where name like '%張%' ;
  • 查詢姓名中含有張這個字的人而且姓名的長度是3個字的人select * from stu where name like '張__' or name like '_張_' or name like '__張' ;
  • 查詢表中有幾種性別 select distinct sex from stu ;
  • 查找姓名和性別總體都不一樣的記錄 select distinct name,sex from stu ;

建立新表分數表

create table score ( id int primary key, sid int , china int, english int , history int, constraint sid_FK foreign key(sid) references stu(id) ) ;
 insert into score values(1,1,68,54,81) ;
 insert into score values(2,3,89,98,90) ; 
insert into score values(3,4,25,60,38) ; 
insert into score values(4,6,70,75,59) ;
 insert into score values(5,8,60,65,80) ;
複製代碼
  • 字段能夠有表達式 select id,china+10,english,history from score ;
  • 給字段起別名select id as 編號,china as 語文,english as 英語,history as 歷史 from score ; select id 編號,china 語文,english 英語,history 歷史 from score ;
  • 查看全部人考試的總分是多少 select id,china + english + history 總分 from score ;
  • 查看總分大於200的人 select * from score where china + english + history > 200 ;
  • 查詢家在桃花島或者黒木崖的人 select * from stu where address = '桃花島' or address = '黒木崖' ; select * from stu where address in('桃花島','黒木崖') ;
  • 查詢沒有參加考試的人 select id ,name from stu where id not in(select sid from score) ;
  • 查詢沒有地址的人 select * from stu where address = null ; #錯誤的 select * from stu where address is null ;
  • 查詢有地址的人 select * from stu where address is not null ;

排序(order by )

  • 對考試的人的語文升序asc排列 select * from score order by china asc;

  • 對考試的人的歷史降序desc排列 select * from score order by history desc;

  • 根據多個字段進行排序(語文升序,對語文成績同樣的人再進行歷史降序類排)select * from score order by china asc,history desc;

  • 根據考試總分降序進行排序 select *,china + english + history 總分 from score order by china + english + history desc ;主鍵:惟一的去區分每一條記錄的一列或者多列的值. 特色:惟一,非空 Order by指定排序的列,排序的列便可是表中的列名,也能夠是select 語句後指定的列名。 Asc升序、Desc降序 ORDER BY 子句應位於SELECT語句的結尾。

建立引用約束

alter table score add constraint stu_score_FK foreign key(sid) references stu(id) ;

  • 刪除約束 alter table score drop foreign key stu_score_FK ;
  • 引用約束 注意:
      1. 添加記錄時必須先添加主表中的記錄,再添加字表中的記錄
      1. 不能更改主表中具備外鍵約束的記錄的主鍵
      1. 刪除記錄的時候不容許刪除具備外鍵關係的主表中的記錄(刪除的順序應當是先刪除字表中的記錄,而後刪除主表中的記錄)

自動增加 create table t5 ( id int primary key auto_increment, name varchar(20) ) ;

  • 多表查詢

  • 交叉查詢

  • 查詢每一個人的考試成績 select * from stu s cross join score c on s.id = c.sid ;

    image.png

  • 查詢參加考試的人的成績 select name,china,english,history,china+english+history 總分 from stu s inner join score c on s.id = c.sid ;

  • 查詢全部人的成績 select name,china,english,history,china+english+history 總分 from stu s left out join score c on s.id = c.sid ;

  • 查詢沒有參加考試的人select * from stu where id not in(select sid from score) ;

  • 查詢參加考試的人的成績select name,china,english,history,china+english+history 總分 from stu s,score c where s.id = c.sid ;

  • 聚合函數 sum max,min avg ,count

    image.png

  • 分組函數select count(*) 數量,sex,name from stu group by sex,name ;

  • 根據多個字段進行分組

  • 分組條件select count(*),sex from stu where age >=16 group by sex having count(*) >1 ;

五、在where子句中常用的運算符

運算符 Like語句中,% 表明零個或多個任意字符,_ 表明一個字符,例first_name like ‘_a%’

image.png

六、數據完整性

  • 數據完整性是爲了保證插入到數據中的數據是正確的,它防止了用戶可能的輸入錯誤。
  • 數據完整性主要分爲如下三類:
    • 實體完整性: 規定表的一行(即每一條記錄)在表中是惟一的實體。實體完整性經過表的主鍵來實現。主鍵:惟一的去區分每一條記錄的一列或者多列的值. 特色:惟一,非空
    • 域完整性: 指數據庫表的列(即字段)必須符合某種特定的數據類型或約束。好比NOT NULL。主鍵primary key 惟一約束unique 檢查約束 MySQL不支持哦int check (age > 0 and age < 100) 非空約束not null
      • create table stu ( id int primary key, // 主鍵約束 name varchar(30) unique, // 惟一約束 sex char(2) not null, //非空約束 age int check (age > 0 and age < 100),// 檢查約束 address varchar(50) default '北京' //默認約束 ) ;
    • 參照完整性: 保證一個表的外鍵和另外一個表的主鍵對應。

七、查詢

  • 鏈接查詢

    • 交叉鏈接(cross join):不帶on子句,返回鏈接表中全部數據行的笛卡兒積。
    • 內鏈接(inner join):返回鏈接表中符合鏈接條件及查詢條件的數據行。
    • 外鏈接:分爲左外鏈接(left out join)、右外鏈接(right outer join)。與內鏈接不一樣的是,外鏈接不只返回鏈接表中符合鏈接條件及查詢條件的數據行,也返回左表(左外鏈接時)或右表(右外鏈接時)中僅符合查詢條件但不符合鏈接條件的數據行。
  • 子查詢

    • 子查詢也叫嵌套查詢,是指在select子句或者where子句中又嵌入select查詢語句 查詢「陳冠希」的全部訂單信息 SELECT * FROM orders WHERE customer_id=(SELECT id FROM customer WHERE name LIKE '%陳冠希%');
  • 聯合查詢

    • 聯合查詢可以合併兩條查詢語句的查詢結果,去掉其中的重複數據行,而後返回沒有重複數據行的查詢結果。聯合查詢使用union關鍵字 SELECT * FROM orders WHERE price>200 UNION SELECT * FROM orders WHERE customer_id=1;
  • 報表查詢

    • 報表查詢對數據行進行分組統計,其語法格式爲: [select …] from … [where…] [ group by … [having… ]] [ order by … ] 其中group by 子句指定按照哪些字段分組,having子句設定分組查詢條件。在報表查詢中可使用SQL函數。

八、 MySQL經常使用數據類型

  • 數值類型

    • BIT(M) 位類型。M指定位數,默認值1,範圍1-64

    • TINYINT [UNSIGNED] [ZEROFILL] 帶符號的範圍是-128到127。無符號0到255。

    • BOOL,BOOLEAN 使用0或1表示真或假

    • SMALLINT [UNSIGNED] [ZEROFILL] 2的16次方

    • INT [UNSIGNED] [ZEROFILL] 2的32次方

    • BIGINT [UNSIGNED] [ZEROFILL] 2的64次方

    • FLOAT[(M,D)] [UNSIGNED] [ZEROFILL] M指定顯示長度,d指定小數位數

    • DOUBLE[(M,D)] [UNSIGNED] [ZEROFILL] 表示比float精度更大的小數

  • 文本、二進制類型

    • CHAR(size) char(20) 固定長度字符串
    • VARCHAR(size) varchar(20)可變長度字符串(可是不能夠超過255, 可是在Oracle中是4000)
    • BLOB LONGBLOB 二進制數據( 用在音頻或者是視屏)
    • TEXT(clob) LONGTEXT(longclob)大文本(小說)
  • 時間日期

    • DATE/DATETIME/TimeStamp
    • 日期類型(YYYY-MM-DD) (YYYY-MM-DD HH:MM:SS),TimeStamp表 示時間戳,它可用於自動記錄insert、update操做的時間

九、 相關函數

  • 時間日期相關函數

    image.png
    select addtime(‘02:30:30’,‘01:01:01’); 注意:字符串、時間日期的引號問題 select date_add(entry_date,INTERVAL 2 year) from student;//增長兩年 select addtime(time,‘1 1-1 10:09:09’) from student;&emsp;//時間戳上增長,注意年後沒有

  • 字符串相關函數

    image.png

  • 數學相關函數

    image.png

  • 數據庫備份: mysqldump -u root -psorry test>D:\test.sql

  • 數據庫恢復:

    • 建立數據庫並選擇該數據庫
    • SOURCE 數據庫文件
    • 或者: mysql -u root -psorry test<test.sql
相關文章
相關標籤/搜索