Mysql 基本知識

2021-10-24 14:05:08 字數 1296 閱讀 8151

管理員: 啟動伺服器  net  start  mysql80

cd 進入  mysql  -u  root  -p  

輸入密碼:123456

建立資料庫  create  database  dbname

刪除資料庫   drop  database    dbname

建立資料表   create  table   tname() 

修改資料表    alter   table   tname()

刪除資料表   

drop  table  tname(刪除整個資料表)

delete  table  tname(刪除一行資料)

tracate  table  tname(刪除表裡面的資料)

常規查詢

查詢所有的字段

select  * from  student

條件查詢

等於   =

select  *  from  student  where  name="li"

不等於  <>

select  *  from  student  where  name<>"li"

大於》select  *  from  student   where  age>'10'

between..........and......

select  * from   student  where  age   between   10  and   60

首位姓li 查詢  like

select   *  from   student  where   name  like  "li%"

末位是陽  查詢  like

select   *  from   student   where   name  like  "%陽"

關鍵字查詢   like

select   *  from  student   where  name  like"%成%"

公升序  order by   asc

select   *  from  student  order  by  score  asc

降序  order  by  desc

select   *  from  student  order  by  score  desc

多鍵值查詢

select  *  from  student   age  in ('10' , '50')

limit子句:限制結果的數量,limit偏移量記錄的條數

select  *  from  student    limit 0,3;

mySQL基本知識

五 字符集 ascii 128個 美式字符集 iso 8859 1 latin1 西歐字符集 255個字元 gb2312 7千多個簡體漢字 gbk 2萬多個漢字 中文常用 utf 8 unicode字符集中最流行的一種實現方式 國際化用它 六 資料庫設計 sybase powerdesigner12...

mysql 基本知識

主要筆記 mysql幫助文件 1,比較常見的建立mysql表的方法 drop table if exists tablname create table tablename create defination table options a.create table if not exists ta...

mysql基本知識

映象複製 內容動態複製到其他計算機 gis函式 全文檢索 簡化對文字欄位內單詞的搜尋 不支援自定義資料型別 不支援xml myisam 靜態 預定義固定長度 儲存效率高 壓縮 減少儲存空間 innodb 支援事務,資料行級鎖定機制,外來鍵約束,不支援全文索引和gis資料 heap 存在於記憶體中,訪...