create database test;
其中create database是建立資料庫的關鍵字;test為該建立資料庫的名字
下面以mysql 5.0 command line client為例建立資料庫;
當建立成功後會有query ok, 1 row affected (0.00 sec)這個資訊顯示;
也可以在安裝的當前位置mysql \mysql 5.0 server 5.0\data的目錄下檢視是否多出了test2這個資料夾
drop database test;
drop database 表示用於刪除資料庫的關鍵字test表示要刪除的資料庫的名字;
下面以mysql 5.0 command line client為例刪除資料庫;
當刪除成功後會有query ok, 0 rows affected (0.00 sec)這個資訊
也可以在安裝的當前位置mysql \mysql 5.0 server 5.0\data的目錄下檢視是否刪除了test2這個資料夾
要建立資料表先要建立資料庫,然後再使用資料庫建立資料表;
先建立乙個名為test2的資料庫,然後用use test2使用這個資料庫,其中use為關鍵字;
建立表名為userlist的資訊表;
create table userlist
(id bigint not null,
name varchar(50) not null,
stunum varchar(30) not null,
pwd varchar(20),
primary key (id)
) default charset=utf8;
insert into userlist values (10001, 'user1', '10001', '10001');
insert into userlist values (10002, 'user2', '10002', '10002');
insert into userlist values (10003, 'user3', '10003', '10003');
下面以mysql 5.0 command line client為例建立資料表;
建立成功後會有query ok, 0 rows affected (0.01 sec)的提示資訊
也可以在安裝的當前位置mysql \mysql 5.0 server 5.0\data的目錄下檢視test2這個資料夾裡邊是否多了乙個userlist.frm的檔案;
mysql資料庫的建立與刪除
一 建立資料庫 create if not exists db name default character set charset name 其中,中的部分是必選項,表示二者選其一,中的是可選項。character 部分是對資料庫採用的字符集的設定。1.建立資料庫demo2 關於 if not e...
MySQL教程(六) 資料庫的建立與刪除
1 create if not exists db name default character set charset name 注 中的內容是必須的,為選擇項,中為可選項。注 第二行是編碼方式的選擇,若不打第二行 則預設為utf8編碼。注 if not exists 的作用 若建立的資料庫已存在...
mysql建立資料庫和刪除資料庫
1.建立資料庫 啟動mysql 服務之後,輸入以下命令連線到mysql 伺服器 mysql db3 mysql uroot p enter password welcome to the mysql monitor.commands end with or g.your mysql connecti...