有人可以告诉我如何使用phpMyAdmin或MySQL命令提示符使用我自己的标签,ID和计数来填充下表吗?
CREATE TABLE tags ( id int(11) NOT NULL AUTO_INCREMENT, PRIMARY KEY(id), tag varchar(100) NOT NULL, count int(11) NOT NULL DEFAULT '0' );
答案 0 :(得分:1)
由于您使用SQL保留字作为列名(不可取),因此您需要在SQL语句中使用反引号来包围该列名。试试这个:
insert into tags (tag, `count`) values
('java', 14),
('mysql', 3),
('php, 7);
id列将由auto_increment自动填充。
答案 1 :(得分:0)
这样的东西?
INSERT INTO tags (id, tag, `count`) VALUES (1, 'foo', 1), (2, 'bar', 1);