mysql表如何建立 如何建立mysql表?

2021-10-18 11:56:47 字數 710 閱讀 1426

mysql中建立資料表的語法為:create table table_name (column_name column_type);

在mysql>提示符下,建立乙個mysql表這是很容易的。使用 sql 命令 create table 來建立表。

在建立表前需要使用use databasename命令選擇資料庫。

建立mysql資料表示例:root@host# mysql -u root -p

enter password:

mysql> use tutorials;

database changed

mysql> create table tutorials_tbl(

-> tutorial_id int not null auto_increment,

-> tutorial_title varchar(100) not null,

-> tutorial_author varchar(40) not null,

-> submission_date date,

-> primary key ( tutorial_id )

query ok, 0 rows affected (0.16 sec)

mysql>

推薦:mysql教程

mysql表建立在哪 mysql如何建立表

在mysql中,可以使用 create table 語句建立表 其語法格式為 create table 表定義選項 表選項 分割槽選項 其中 表定義選項 的格式為 建立資料表的過程是規定資料列的屬性的過程,同時也是實施資料完整性 包括實體完整性 引用完整性和域完整性 約束的過程。下面本篇文章介紹一下...

mysql如何建立外檢 mysql如何建立外來鍵

乙個主表blog部落格表,drop table if exists blog create table blog id int 11 not null auto increment,title varchar 11 default null,content varchar 11 default nu...

mysql怎麼建表 mysql如何建立表

在mysql中,可以使用 create table 語句建立表 其語法格式為 create table 表定義選項 表選項 分割槽選項 其中 表定義選項 的格式為 建立資料表的過程是規定資料列的屬性的過程,同時也是實施資料完整性 包括實體完整性 引用完整性和域完整性 約束的過程。下面本篇文章介紹一下...