代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/250731/4427481
sql arnold.sql
CREATE TABLE blocked_reason (
blocked_reasonid SERIAL PRIMARY KEY,
text VARCHAR
);
CREATE TABLE identity (
identityid SERIAL PRIMARY KEY,
mac VARCHAR NOT NULL, -- MAC-address of computer
blocked_stat
www.eeworm.com/read/250731/4427482
sql types.sql
-- This SQL script inserts initial equipment vendors and types in the NAV
-- manage database.
--
-- It is not necessary to run this script in a transaction. If executed on a
-- running installation,
www.eeworm.com/read/250731/4427483
sql snmpoid.sql
--
-- Automated dump by dumpsnmpoid.py initiated at 2005-07-05 11:10:01 GMT
--
BEGIN;
DELETE FROM snmpoid WHERE oidkey='3c9300Mac';
INSERT INTO snmpoid (oidkey, snmpoid, descr, oidsource, getnext, mat
www.eeworm.com/read/250731/4427484
sql navprofiles.sql
/*
=============================================
NAVprofiles
SQL Initialization script
Run the command:
psql navprofiles -f navprofiles.sql
!! WARNING !!
This SQL
www.eeworm.com/read/249978/4443930
sql testblobdb.sql
declare database testblobdb;
create table File (
id int,
name string unique primary key,
content blob,
lines vector of int
);
www.eeworm.com/read/249978/4443962
sql sp.sql
-- create table S (sid char(5) primary key,
-- sname char(20),
-- status integer,
-- city char(15));
-- create table P (pid char(5) primary key,
-- pname char(20),
-- color char(
www.eeworm.com/read/249976/4443972
sql testblobdb.sql
declare database testblobdb;
create table File (
id int,
name string unique primary key,
content blob,
lines vector of int
);
www.eeworm.com/read/249976/4444010
sql sp.sql
-- create table S (sid char(5) primary key,
-- sname char(20),
-- status integer,
-- city char(15));
-- create table P (pid char(5) primary key,
-- pname char(20),
-- color char(
www.eeworm.com/read/249251/4452351
sql order.sql
CREATE TABLE order_item (
order_item_id int(11) DEFAULT '0' NOT NULL auto_increment,
order_id int(11),
user_info_id int(11),
vendor_id int(11),
product_id int(11),
product_quantity int(11)
www.eeworm.com/read/249251/4452385
sql isshipping.sql
#
# Table structure for table 'shipping_method'
#
DROP TABLE ISshipping;
CREATE TABLE ISshipping (
ship_method_id int(11) DEFAULT '0' NOT NULL auto_increment,
ship_carrier_id varchar(12),
ship_