MySQL基本知識

2021-06-29 01:57:50 字數 792 閱讀 6976

1、bigint的length為20是什麼意思?

2^64=18446744073709551616,共20位(只有儲存無符號整數,才能到20位 )

2、mysql中varchar最大長度是多少?

3、mysql的length指的是顯示寬度

4、mysql的時間函式

5、timestamp

在建立新記錄和修改現有記錄的時候都對這個資料列重新整理

6、檢視當前連線數

show processlist; 

7、檢視最大連線數

show variables like '%max_connections%'

8、檢視autocommit變數

select @@session.autocommit;----session級別

select @@global.autocommit; ----全域性級別

9、命令列登入mysql

mysql -h網域名稱 -p3306 -usaas1 -p

10、檢視sql_safe_updates變數

show variables like 'sql_safe_updates'

11、清空資料表

(1) delete from 表名; 

(2) truncate table 表名;

12、資料型別

(1) longtext:字串最大長度

(2) blob:儲存大量二進位制資料

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 存在於記憶體中,訪...