代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/249251/4452411
sql base.sql
#
# Table structure for table 'auth_user_md5'
#
CREATE TABLE auth_user_md5 (
user_id varchar(32) DEFAULT '' NOT NULL,
username varchar(32) DEFAULT '' NOT NULL,
password varchar(32) DEFAULT '' NO
www.eeworm.com/read/249251/4452474
sql tax.sql
CREATE TABLE tax_rate (
tax_rate_id int(11) NOT NULL auto_increment,
vendor_id int(11),
tax_state varchar(64),
tax_country varchar(64),
tax_rate decimal(10,4),
mdate int,
PRIMARY
www.eeworm.com/read/249251/4452477
sql include.sql
##插入信息
INSERT INTO shopper_group VALUES (5,1,'-default-','Default shopper group.');
INSERT INTO shopper_group VALUES (6,1,'Gold Level','Gold Level phpShoppers.');
INSERT INTO shopper_group VALUES
www.eeworm.com/read/249251/4452478
sql phpshop.sql
CREATE TABLE ISshipping (
ship_method_id int(11) DEFAULT '0' NOT NULL auto_increment,
ship_carrier_id varchar(12),
ship_carrier_code varchar(11),
ship_carrier_name varchar(32),
ship_met
www.eeworm.com/read/249204/4454289
java sql.java
/*
* Created on 2004-12-10
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package com.bwm.string;
/**
www.eeworm.com/read/249203/4454315
java sql.java
/*
* Created on 2004-12-10
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package com.bwm.string;
/**
www.eeworm.com/read/249014/4458482
sql createaccounts.sql
create database AccountsDB
go
use AccountsDB
create table Accounts ([Client] varchar (15) NOT NULL, [Balance] int NOT NULL)
create unique index Client on Accounts([Client])
insert into Accounts V
www.eeworm.com/read/249014/4458483
sql createexchange.sql
create database StocksDB
go
use StocksDB
create table Stocks ([Symbol] varchar (5) NOT NULL,
[Shares] int NOT NULL,
[MarketPrice] int NOT NULL)
create unique index [Symbol] on Stocks([Symbol])
www.eeworm.com/read/248928/4462831
sql vmdb.sql
DROP TABLE IF EXISTS voicemail;
CREATE TABLE voicemail (
-- All of these column names are very specific, including "uniqueid". Do not change them if you wish voicemail to work.
uniqueid INT(5) NOT
www.eeworm.com/read/248928/4462836
sql meetme.sql
--
-- Table structure for Realtime meetme
--
CREATE TABLE meetme (
confno char(80) DEFAULT '0' NOT NULL,
pin char(20) NULL,
adminpin char(20) NULL,
members integer DEFAULT 0 NOT NULL,
PRIMARY