create table,show tables,describe table,DROP TABLE,ALTER TABLE ,怎麼使用? ...
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);