例如:
CREATE TABLE "websites" (
"id" int NOT NULL ,
"name" char(20) NOT NULL DEFAULT '' ,
"url" varchar(255) NOT NULL DEFAULT '',
"alexa" int NOT NULL DEFAULT '0' ,
"country" char(10) NOT NULL DEFAULT '' ,
PRIMARY KEY ("id")
)
INSERT INTO "websites" VALUES ('1', 'Google', 'https://www.google.cm/', '1', 'USA'), ('2', '淘宝', 'https://www.taobao.com/', '13', 'CN'), ('3', '菜鸟教程', 'http://www.runoob.com', '5892', ''), ('4', '微博', 'http://weibo.com/', '20', 'CN'), ('5', 'Facebook', 'https://www.facebook.com/', '3', 'USA');
注意上面的“insert values(),(),()”。将上面的SQL在sqlServe、mysql、sqlite3 中均可以正常使用 。