在mysql的圖形介面中,建資料庫方法如下:1、舉例說明為了不影響其他的資料庫表,新建一張資料庫表t_worker_info,程式碼如下:
create table t_worker_info(
id int(8) primary key not null auto_increment,
w_id int(10) not null,
w_name varchar(20) not null,
w_age int(3),
w_sex varchar(10),
w_birth varchar(20)
)。
2、建立t_worker_info後,檢視一下資料結構,程式碼如下:
desc t_worker_info。
3、雙擊選中的資料庫,在Views滑鼠右鍵“Create View...”,開啟編輯視窗,並在視窗中輸入程式碼,程式碼如下:
CREATE VIEW `view_worker_info` AS
SELECT * FROM t_worker_info。
4、檢視建立檢視的基本資訊,利用desc或describe語句,程式碼如下:
desc view_worker_info。
5、檢視檢視資訊,如儲存引擎、資料長度等,如果上述指標都為null,說明檢視是虛表,程式碼如下:
show table status like "view_worker_info"。
6、檢視建立檢視的詳細資訊,需要用到show create view 檢視名,程式碼如下:
show create view view_worker_info。
在mysql的圖形介面中,建資料庫方法如下:1、舉例說明為了不影響其他的資料庫表,新建一張資料庫表t_worker_info,程式碼如下:
create table t_worker_info(
id int(8) primary key not null auto_increment,
w_id int(10) not null,
w_name varchar(20) not null,
w_age int(3),
w_sex varchar(10),
w_birth varchar(20)
)。
2、建立t_worker_info後,檢視一下資料結構,程式碼如下:
desc t_worker_info。
3、雙擊選中的資料庫,在Views滑鼠右鍵“Create View...”,開啟編輯視窗,並在視窗中輸入程式碼,程式碼如下:
CREATE VIEW `view_worker_info` AS
SELECT * FROM t_worker_info。
4、檢視建立檢視的基本資訊,利用desc或describe語句,程式碼如下:
desc view_worker_info。
5、檢視檢視資訊,如儲存引擎、資料長度等,如果上述指標都為null,說明檢視是虛表,程式碼如下:
show table status like "view_worker_info"。
6、檢視建立檢視的詳細資訊,需要用到show create view 檢視名,程式碼如下:
show create view view_worker_info。