widget.sql

来自「Professional PHP5 code for this book」· SQL 代码 · 共 8 行

SQL
8
字号
CREATE TABLE "widget" (  "widgetid" SERIAL PRIMARY KEY NOT NULL,  "name" varchar(255) NOT NULL,  "description" text);INSERT INTO "widget" ("name", "description") VALUES('Foo', 'This is a footacular widget!');

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?