CREATE DATABASE testdb CHARSET=UTF8 創建一個資料庫 名字叫做testdb USE testdb; 選擇資料庫 CREATE TABLE testTable1( -> id int(11) not null primary key auto_increment, - ...
CREATE DATABASE testdb CHARSET=UTF8
創建一個資料庫 名字叫做testdb
USE testdb;
選擇資料庫
CREATE TABLE testTable1( -> id int(11) not null primary key auto_increment, -> username char(16) not null, -> password char(16) not null);
創建一個表 名字為testTable1
第一個欄位名字為 id 最大11個字元 not null 不允許為空 Primary key 設置主鍵 auro_increment,自動增長
第二個欄位名字為username char型最大16個字元 不允許為空
第二個欄位名字為password char型最大16個字元 不允許為空
DROP TABLE testTable1;
DROP DATABASE testdb;
刪除一個表
刪除一個資料庫