mysql表的管理

2021-08-21 05:19:44 字數 459 閱讀 1668

表字段操作

1.建立表

create table 表名(

id int,

name varchar(15),

age int,

score float);

2.修改表字段

新增字段:alter table 表名 add 欄位名 資料型別 [ first | after ];

刪除字段:alter table 表名 drop 欄位名;

修改字段:alter table 表名 modify 欄位名 新資料型別;

表記錄操作

1.插入記錄1

insert into 表名 values(1,'李白',30,90);

2.插入某個字段記錄2

insert into 表名(name,score) values('李清照',92);

mysql 表的管理

語法 create table 表名 列名 列的型別 長度 約束 列名 列的型別 長度 約束 列名 列的型別 長度 約束 列名 列的型別 長度 約束 1 修改列名 alter table表名change column 舊列名,新列名 2 修改列的型別或約束 alter table表名modify c...

MySQL裝置管理表 mysql基礎篇 表的管理

表的建立 常見的資料型別 數值型 整型 tinyint smallint mediumint int integer bigint 特點 1.如果不設定無符號還是有符號,預設是有符號,如果想設定無符號,需要新增unsigned關鍵字 2.如果插入的數值超出了正型的範圍,會報out of range異...

mysql庫和表 MySQL庫和表的管理

mysql資料庫服務配置好後,系統會有4個預設的資料庫.information schema 虛擬物件,其物件都儲存在記憶體中 performance schema 伺服器效能指標庫 mysql 記錄使用者許可權,幫助,日誌等資訊 test 測試庫 mysql資料庫及表的管理 1.查詢所有資料庫 m...