🔖 mysql 示例

pull/1/head
Zhang Peng 2018-05-04 17:15:37 +08:00
parent 2b1ace4e1a
commit f43e849db0
1 changed files with 2 additions and 2 deletions

View File

@ -32,11 +32,11 @@ INSERT INTO user(username, password, email) VALUES ('雷九', '123456', 'xxxx@16
# 插入数据
#############################################################
-- 不指定列名方式插入记录
-- 插入完整的行
INSERT INTO user
VALUES (10, 'root', 'root', 'xxxx@163.com');
-- 指定列名方式插入记录
-- 插入行的一部分
-- 注意自增ID数值由于当前最大的ID值为10所以插入本条记录时自增ID为11
INSERT INTO user(username, password, email)
VALUES ('admin', 'admin', 'xxxx@163.com');