代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/130620/14180642
phpm sql.phpm
class sql {
private $result_rows; # Result rows hash
private $query_handle; # db: the query handle
private $link_ident; # db: the link identifier
public function __construct() {
$db_
www.eeworm.com/read/130620/14180645
sql tables.sql
CREATE TABLE user_session (
"id" SERIAL PRIMARY KEY NOT NULL,
"ascii_session_id" character varying(32),
"logged_in" bool,
"user_id" int4,
"last_impression" timestamp,
"created" timestamp,
www.eeworm.com/read/130620/14180656
sql tables.sql
CREATE TABLE "student" (
"studentid" SERIAL NOT NULL PRIMARY KEY,
"name" varchar(255)
);
CREATE TABLE "course" (
"courseid" SERIAL NOT NULL PRIMARY KEY,
"coursecode" varchar(10),
"name" var
www.eeworm.com/read/130620/14180667
sql data.sql
INSERT INTO "student"(name) VALUES('Bob Smith'); -- studentid 1
INSERT INTO "student"(name) VALUES('John Doe'); -- studentid 2
INSERT INTO "student"(name) VALUES('Jane Baker'); -- stud
www.eeworm.com/read/130620/14180698
sql widget.sql
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 footacu
www.eeworm.com/read/130576/14183430
sql ddl.sql
#--数据表td_guestbook
CREATE TABLE `td_guestbook` (
`id` BIGINT(10) DEFAULT '0' NOT NULL AUTO_INCREMENT,
`name` VARCHAR(30) NOT NULL,
`qq` VARCHAR(30) DEFAULT 'no' NOT NULL,
`email` VARCHAR(100
www.eeworm.com/read/130572/14184036
gif sql.gif
www.eeworm.com/read/130572/14184613
gif sql.gif
www.eeworm.com/read/130515/14188549
sql srccalendar.sql
CREATE SEQUENCE "srcevent_event_id_seq" start 1 increment 1 maxvalue 2147483647 minvalue 1 cache 1 ;
SELECT nextval ('srcevent_event_id_seq');
CREATE SEQUENCE "srclocation_location_id_seq" start 27 i
www.eeworm.com/read/130515/14188551
sql auth.sql
CREATE TABLE "session" ("session_key" "text" NOT NULL, "user_id" "int4" NOT NULL, "username" "text" NOT NULL, "gecos" "text", "expires" "int4" NOT NULL, "source_host" "text" NOT NULL, "permissions" "i