代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/399273/2363045
sql mtotacct.sql
CREATE TABLE mtotacct (
MTotAcctId bigint(21) NOT NULL auto_increment,
UserName varchar(64) NOT NULL default '',
AcctDate date NOT NULL default '0000-00-00',
ConnNum bigint(12) default NULL,
www.eeworm.com/read/399273/2363046
sql totacct.sql
CREATE TABLE totacct (
TotAcctId bigint(21) NOT NULL auto_increment,
UserName varchar(64) NOT NULL default '',
AcctDate date NOT NULL default '0000-00-00',
ConnNum bigint(12) default NULL,
C
www.eeworm.com/read/399273/2363047
sql badusers.sql
SET search_path = public, pg_catalog;
--Table structure for table 'badusers'
--
CREATE TABLE badusers (
id BIGSERIAL PRIMARY KEY,
username TEXT NOT NULL,
incidentdate timestamp with time
www.eeworm.com/read/399273/2363048
sql userinfo.sql
SET search_path = public, pg_catalog;
--
-- Table structure for table 'userinfo'
--
CREATE TABLE userinfo (
id SERIAL PRIMARY KEY,
username TEXT,
name TEXT,
mail TEXT,
department
www.eeworm.com/read/399273/2363049
sql mtotacct.sql
SET search_path = public, pg_catalog;
--
-- Table structure for table 'mtotacct'
--
CREATE TABLE mtotacct (
mtotacctid BIGSERIAL PRIMARY KEY,
username TEXT DEFAULT '' NOT NULL,
acctdate D
www.eeworm.com/read/399273/2363050
sql totacct.sql
SET search_path = public, pg_catalog;
--
-- Table structure for table 'totacct'
--
CREATE TABLE totacct (
totacctid bigSERIAL PRIMARY KEY,
username TEXT DEFAULT '' NOT NULL,
acctdate DATE
www.eeworm.com/read/399273/2363051
sql badusers.sql
/*
* $Id$
*
*/
/*
* Table structure for table 'radcheck'
*/
CREATE TABLE badusers (
id INT PRIMARY KEY,
username VARCHAR(30) DEFAULT '' NOT NULL,
incidentdate TIMESTAMP WITH TIME ZONE DEFAU
www.eeworm.com/read/399273/2363052
sql userinfo.sql
/*
* $Id$
*
*/
/*
* Table structure for table 'userinfo'
*/
CREATE TABLE userinfo (
id INT PRIMARY KEY,
username VARCHAR(128) DEFAULT '' NOT NULL,
name VARCHAR(128) DEFAULT '' NOT NULL,
m
www.eeworm.com/read/399273/2363053
sql mtotacct.sql
/*
* $Id$
*
*/
/*
* Table structure for table 'mtotacct'
*/
CREATE TABLE mtotacct (
mtotacctid INT PRIMARY KEY,
username varchar(64) DEFAULT '' NOT NULL,
acctdate DATE DEFAULT sysdate NOT NU
www.eeworm.com/read/399273/2363054
sql totacct.sql
/*
* $Id$
*
*/
/*
* Table structure for table 'totacct'
*/
CREATE TABLE totacct (
totacctid INT PRIMARY KEY,
username varchar(64) DEFAULT '' NOT NULL,
acctdate