您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關mysql基本操作有那些的內容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。
文章目錄
structured Query Language:結構化查詢語言
1) DDL(Data Definition Language)數據定義語言
用來定義數據庫對象:數據庫,表,列等。關鍵字:create, drop,alter 等
2) DML(Data Manipulation Language)數據操作語言
用來對數據庫中表的數據進行增刪改。關鍵字:insert, delete, update 等
3) DQL(Data Query Language)數據查詢語言
用來查詢數據庫中表的記錄(數據)。關鍵字:select, where 等
4) DCL(Data Control Language)數據控制語言(了解)
用來定義數據庫的訪問權限和安全級別,及創建用戶。關鍵字:GRANT, REVOKE 等
#Createcreate database hzyc;create database if not exists hzyc98 character set gbk;#Retrieveshow databases;show create database hzyc98;#Updatealter database hzyc98 character set gbk;#Deletedrop database hzyc98;drop database if exists hzyc98; #查看當前使用的數據庫select database();show tables;use hzyc98
表名/表頭為:zoomlist
#查show tables; -- show tables_in_hzyc98desc zoomlist;#增create table zoomlist ( Name varchar(30), Age int, ID int, Height double(5,1))#刪drop table if exists zoomlist;#改alter table zoomlist rename to newzoomlist;alter table zoomlist character set gbk;alter table zoomlist add Name varchar(20);#加列alter table zoomlist change Age newAge int;alter table zoomlist modify Age char(8);alter table zoomlist drop Name;/*設置類型:*/ - int、double(5,1)、varchar(20) - date #yyyy-MM-dd - datetime #yyyy-MM-dd HH:mm:ss - timestamp#時間戳 yyyy-MM-dd HH:mm:ss
#除了數字,其他都需要引號來賦值insert into zoomlist (Name, Age, ID, Height) value('美洲豹',5,'20201207',3.2);insert into zoomlist ('美洲豹',5,'20201207',3.2);#刪除delete from zoomlist where [條件];delete from zoomlist;TRUNCATE TABLE zoomlist;#修改update zoomlist set Name = '大笨象' Age = 12 where address = '深圳';update zoomlist set address = '深圳';
#查詢#盡量不要用 * 先desc一下表里面有啥,然后在決定展示什么東西。SELECT * FROM zoomlist; SELECT Name,Age FROM zoomlist; --只顯示某個列,方便查看!SELECT DISTINCT Name FROM zoomlist; --去除結果中[完全重復]的SELECT Name,score1,score2,scroe1+scroe2 FROM zoomlist;--as:自定義名字展示,也可以不寫asSELECT Name,scroe1+IFNULL(scroe2,0) 總分 FROM zoomlist; --ifnull遇到沒有值的直接給賦值為0SELECT Name,score1,score2,scroe1+IFNULL(scroe2,0) AS 總分 --顯示表頭FROM zoomlist,peoplelist; --從zoomlist、peoplelist里面獲取
* > 、< 、<= 、>= 、= 、!=、<>--不等號* and、or、not --關鍵字比&&、||、!好用推薦* BETWEEN...AND --范圍內都符合就行* IN( 集合) --特定值的范圍* LIKE:模糊查詢(1)_:單個任意字符;(2)%:多個任意字符* IS NULL例子:select Name, Age from Student where age between 12 and 20;select Name, Age from Student where age in (12,14,16,18);select Name, Age from Student where name like '%牛%'; --查名字里面包含了牛的學生select Name, Age from Student where name is not null; -- 查詢學生:名字空的不查
select * from employee order by age;select * from employee order by age asc; --升序select * from employee order by age desc; --降序select * from employee order by age desc height desc; --第一個一樣的時候,才會用第二個方法排序(age降序,身高降序)
排除了null數據,并且有null的數據就不參與計算,不會報錯!
select count(*) from student;select count(ifnull(age,20)) from student; select count(age) from student;--如果沒有就不記錄select count(id) from student; --我們一般選用主鍵來統計個數select max(age) from student;select min(age) from student;select sum(age) from student;select avg(age) from student;
group by 之后就是兩個不同的組別了,他們不能再去查看一個獨立的個體了。
select sex,count(name) from employee group by sex having count(name)<6;select sex,count(name) from employee where name = '張四' group by sex ;
limit是一個MySQL的方言,用于分頁
SELECT * FROM student LIMIT 0,5; -- 第1頁,從0索引開始,讀5個數據SELECT * FROM student LIMIT 7,10; -- 第2頁,從7索引開始(第8個數據),讀10個數據
-- 建表時添加非空約束: create table employee( name char(30), sex char(8) not null ) alter table employee modify sex char(8) not null; --添加非空約束 alter table employee modify sex char(8); --破除非空約束
只可以有一個null值,不能再多了;
刪除約束只可以用drop index來刪除unique約束
-- 建表時添加唯一約束: create table employee( name char(30), sex char(8), score int unique --分數要唯一 ) --添加唯一約束alter table employee modify name char(8) unique; --破除唯一約束-- alter table employee modify sex char(8); 不可用--破除name身上的unique約束用drop index除去索引alter table employee drop index name;
一個表只有一個primary key,非空且唯一
做記錄的唯一標識,相當于index
-- 建表時添加主鍵約束: create table employee( id int primary key, --給id加上主鍵約束 name char(30), ) --添加唯一約束alter table employee modify id int primary key; --破除唯一約束-- alter table employee modify id int; 不可用!--破除id身上的primary key約束只能用drop primary keyalter table employee drop primary key;
只對數值有用,而且一般可以放給主鍵做自動增長
-- 建表時添加auto_increment: create table employee( id int auto_increment, --給id加上auto_increment name char(30), ) --添加auto_increment,自動從1開始alter table employee modify id int auto_increment;--設置初值alter table employee auto_increment = 100; --破除auto_incrementalter table employee modify id int;
感謝各位的閱讀!關于mysql基本操作有那些就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。