檢視資料庫
show database ;
選擇使用的資料庫
use 資料庫名 ;
檢視表show tables ;
查詢表select * from 表名
高版本mysql語句
注:mysql內建庫 名:information_schema
查庫select schema_name from information_schema.schemata
查表select table_name from information_schema.tables where table_schema='庫名'
查列select column_name from information_schema.columns where table_name='表名'
查字段select 列1,列2,列3 from 庫名.表名
mysql的 information_schema 庫的 columns 表 詳情可見
查詢函式
1.version() --mysql版本
2.user() --資料庫使用者名稱
3.database() --資料庫名
4.@@datadir --資料庫安裝路徑
5.@@version_compile_os --作業系統的版本
字串連線函式:
1.concat(字串1,字串2) --沒有分隔符的連線字串
2.concat_ws(-/~,字串1,字串2) --含有分隔符的連線字串
3.group_concat(字串1,字串2) --連線乙個組的所有字串,並用,分隔每乙個字元。
詳情見:
mysql 常用函式迴圈 mysql 常用函式
mysql 常用函式 數字函式 ceiling x 返回大於x的最小整數值 floor x 返回小於x的最大整數值 truncate x,y 返回數字x截短為y位小數的結果 僅僅只是截斷,不會進行四捨五入計算 聚合函式 group concat col 返回由屬於一組的列值連線組合而成的結果 字串函...
mysql常用函式哪些 MySQL常用函式彙總
數學類函式 ceil x ceilin x 進一取整 floor x 捨掉小數部分 round x,y 四捨五入 保留y位小數 mod x,y x除以y以後的餘數 abs x 取x的絕對值 power x,y pow x,y 冪運算 x的y次冪 pi 圓周率 rand 或者rand x 0 1之間的...
mysql常用轉換函式 Mysql常用函式
ip位址轉換 inet aton 將ip位址轉換成數字型 inet ntoa 將數字型轉換成ip位址 phpip位址相互轉換 ip 轉整型 ip2long 133.114.56.135 轉整型後帶符號 2056111993 bindec decbin ip2long 133.114.56.135 轉...