Mysql命令create table 建立資料表

2021-07-13 02:05:47 字數 535 閱讀 8328

create table命令用來建立資料表。

create table命令格式:create table 《表名》 (《欄位名1> 《型別1> [,..《欄位名n> 《型別n>]);

例如,建立乙個名為myclass的表:

欄位名數字型別

資料寬度

是否為空

是否主鍵

自動增加

預設值id

int4

否primary key

auto_increment

name

char20否

***int4否

0degree

double16是

mysql> create table myclass(

> id int(4) not null primary key auto_increment,

> name char(20) not null,

> *** int(4) not null default '0',

> degree double(16,2));

mysql 命令 mysql 命令

刪除 delete from user 刪除user表中所有記錄 不帶星號 顯示記錄數 select count 1 from user 不用count 效率低 可以替換成欄位名 select count tigan from tiku mysql create database db name 建...

mysql命令 Mysql命令大全

7.1 乙個建庫和建表的例項1 drop database if exists school 如果存在school則刪除 create database school 建立庫school use school 開啟庫school create table teacher 建立表teacher id ...

mysql命令測試 mysql命令

7.1 乙個建庫和建表的例項1 drop database if exists school 如果存在school則刪除 create database school 建立庫school use school 開啟庫school create table teacher 建立表teacher id ...