MySql資料型別及建立庫操作

2021-10-09 18:03:33 字數 1840 閱讀 9325

登陸mysql伺服器

mysql –u username –ppwd

檢視所有的資料庫

show databases;

建立資料庫

create dadtabase dbname;

使用/切換資料庫

use dbname

檢視正在使用的資料庫

select database();

刪除資料庫

drop database dbname;

整數型別

浮點型別

字串型別

日期與時間型別

檢視當前資料庫中的所有表

show tables;

建立表

create table tablename(欄位1 資料型別,欄位2 資料型別…)[character set 字符集 collate 校對規則]

檢視表結構

desc tablename;

重新命名表

alter table 原表名 rename [to] 新錶名;

新增字段

新增字段[預設新增在表的最後乙個位置]

alter table tablename add 字段 資料型別;

新增字段:在表的第乙個位置新增字段

alter table tablename add 字段 資料型別 first;

新增字段:在表的指定位置新增字段

alter table tablename add 欄位new 資料型別 after 欄位old;

修改字段

修改字段:修改字段資料型別

alter table tablename modify 字段 資料型別;

修改字段:修改欄位到第乙個位置

alter table tablename modify 字段 資料型別 first;

修改字段:修改欄位到指定位置

alter table tablename modify 字段 資料型別 after 字段;

修改字段:只修改欄位名稱,不修改資料型別

alter table tablename change 字段 newname 原資料型別;

修改字段:修改欄位名稱,同時修改資料型別

alter table tablename change 字段 newname 新資料型別;

刪除字段

alter table tablename drop 字段;

刪除表

drop table tablename;

MySql 庫 表級操作 及 資料型別

資料庫分類 關係型資料庫 sql 儲存方式固定,安全 非關係型資料庫 nosql 儲存方式比較靈活,儲存資料的效率比較高,不太安全 mysql是一種關係型資料庫管理系統 採用關係模型來組織管理資料的資料庫系統 注意事項 大小寫 不嚴格區分,預設大寫為程式 小寫為程式設計師寫的 語句結束符 每個語句都...

MySQL中的資料型別及建立

mysql建立 1.建立資料庫 create database test2 2.刪除資料庫 drop database test2 3.建立表 create table ceshi ids int auto increment primary key,uid varchar 20 name varc...

Mysql學習之建立資料庫,資料型別

建立資料庫 開啟mysql 5.7 command line client unicode 輸入 create database name 刪除資料庫 輸出 drop database name mysql資料型別 整型 tinyint one byte smallint two byte int ...