資料庫的建立及其操作
1.建立資料庫:
語法:create database 資料庫名;
2.顯示資料庫:
語法:show databases ;//顯示當前有的資料庫
3.使用資料庫:
語法:use 資料庫名;
4.刪除資料庫:
語法:drop database 資料庫名:
表的建立及其操作
1.表的建立:
語法:create table table_name (
2.表的刪除:
語法:drop table 表名;
3.往表中插入資料:
語法:insert into 表名( , ,) values( , , ,);
4.檢視當前所有的表:
語法:show tables;
表的增刪改查
1.插入資料
1)單行資料+全列插入
insert into 表名( , , ) values( , , );//表的所有欄位名都要進行賦值;
2)多行資料加指定列插入
insert into 表名(指定欄位名,指定欄位名) values(指定字段賦值,指定字段賦值);
2.查詢:
1).全列查詢:
語法: select *from student2;
2).指定列查詢:
語法:select id,sname from student2;//僅查詢所給字段的內容
3).別名
語法:select sname 『姓名』 from student2;
4).去重(關鍵字:distinct)
語法:select distinct age from student2;//去除年齡相同的
5).排序(關鍵字: order by)
語法:select * from student2 order by age;//按年齡排序
6).條件查詢(關鍵字 where)
語法:select *from student2 where age>19;
7).and和or
and用法: select *from student2 where age>19 and id=1;//在表student2中查詢年齡大於19並且id=1的
or用法: select *from student2 where age>19 or id=1;//在表student2中查詢年齡大於19或者id=1的
8).in(給定乙個欄位的可能有的值)
語法: select *from student2 where age in(19,34);
9).模糊查詢(關鍵字 like)
語法: select *from student2 where sname like 『古%』;
10).分頁查詢(limit)
語法:select *from student2 limit 1,3;//從2開始往後三條記錄
3.修改(update)
語法: update student2 set sname=『鄧倫』 where sname=『古力娜扎』;
4.刪除(delete)
語法: delete from student2 where age=24;
mysql 的基本語法 MYSQL基本語法
資料庫 可視為電子化的檔案櫃 儲存電子檔案的處所 為什麼使用資料庫 持久化 方便管理資料 結構化查詢 非結構化查詢 net start 程式 啟動 net stop 程式 結束 mysql uroot p3307 p 新建資料庫 create database 資料庫名 使用資料庫 use 資料庫名...
mysql的基本語法 mysql的基本語法
正文本篇文章主要是記錄一些常用的mysql語法,方便使用時候進行查閱。linux上常用命令 命令都以 結尾 1,登入mysql mysql u賬號 p密碼 2,檢視幫助 help 或者 h 3,檢視有哪些資料庫 show databases 4,進入某個資料庫 use databasename 5,...
MySql基本語法
基本語法 create database 資料庫名 資料庫選項 字符集等 基本語法 匹配模式 show create database 資料庫名 use 資料庫名 修改庫選項 alter database 資料庫名 選項 值 基本語法 drop 資料庫名 基本語法 create table 表名 欄...