2)表本身(非表資料)的基本操作:(視訊下載) (全部書籍)
CREATE TABLE 表名 (列_1_名 列_1_型別 列_1_細節,
列_2_名 列_2_型別 列_2_細節,
…
);
例如:create table student(id int not null,name char(10),age int);
例如:CREATE TABLE t (id INT NOT NULL, last_name CHAR(30) NOT NULL, first_name CHAR(30) NOT NULL, d DATE NOT NULL);
show tables;顯示當前資料庫中的Tables
describe table_name;顯示table各欄位資訊
DROP TABLE t; (刪除表)
DROP TABLE t1, t2, t3;
ALTER TABLE t ADD x INT NOT NULL;(增加一列)
ALTER TABLE t DROP x; (刪除y)
3)表資料的基本操作:
新增紀錄:
INSERT INTO 表名 (列_list) VALUES (值_list);
例如:
INSERT INTO student (id,name,age) VALUES(1,`liyaohua`,25);
INSERT INTO student (id,name,age) VALUES(2,`fuwenlong`,26);