mysql常用指令 Mysql常用指令

2021-10-18 03:02:06 字數 1035 閱讀 4004

mysql常用指令2021-01-19 23:40:45

作用:去除select 查詢出來的結果中重複的資料,重複資料只展示一列.

關鍵字:distinct

用法:select distinct source from student_table

source:去重的字段條件

student_table: 表名查詢版本號

select version() --查詢系統版本(函式)用來計算(表示式)

select 100*33 as 計算結果 --用來計算(表示式)查詢自增長步長(變數)

select @@auto_increment_increment --查詢自增的步長(變數)模糊查詢

select * from student_table where name like '%劉%' --表示名字中帶有劉字的條件;

select * from student_table where name like '劉%' --表示名字以劉字開頭的條件;

select * from student_table where name like '劉_' --表示以劉後面只有乙個子的條件;

select * from student_table where name like '劉__' --表示以劉後面只有兩個字的條件.is not null 不為空 is null 為空

select * from student_table where birthdate is not null; 查詢出生日期不為空的學生資訊.

select * from student_table where birthdate is null; 查詢出生日期為空的學生資訊.join 聯表查詢

圖示:結論:inner join 是兩邊條件都符合的才能執行,null的不算left join tableone left join tabletwo ,以左邊邊為準,左邊的null能被輸出;

tags 標籤

mysql execute指令 mysql常用命令

一 游標 游標 cursor 是處理資料的一種方法,為了檢視或者處理結果集中的資料,游標提供了在結果集中一次一行或者多行前進或向後瀏覽資料的能力。可以把游標當作乙個指標,它可以指定結果中的任何位置,然後允許使用者對指定位置的資料進行處理。模版案例一 import if name main cnx c...

mysql手機指令 MySQL常用指令

mysql相關指令 資料庫排序規則 常用utf8 general ci 1cmd連線資料庫 1.版本檢視 mysqladmin version 2.連線root mysql u root p,輸入密碼 退出ctrl c 或quit 2查詢資料庫 show databases 3查詢資料表 show ...

MYSQL常用指令

net start mysql 啟動mysql服務 net stop mysql 關閉mysql服務 mysql create database 庫名 或 d mysqladmin u root p create 庫名 建立資料庫 mysql show databases 檢視資料庫 mysql u...