代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/148153/5717064
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/148153/5717065
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/148153/5717313
sql prepaid.sql
# MySQL dump 8.13
#
# Host: localhost Database: python
#--------------------------------------------------------
# Server version 3.23.36
#
# Table structure for table 'sessions'
#
CREATE TABLE s
www.eeworm.com/read/148153/5717731
c sql.c
/*
* sql.c rlm_sql - FreeRADIUS SQL Module
* Main code directly taken from ICRADIUS
*
* Version: $Id: sql.c,v 1.79.2.3 2005/08/26 00:37:47 aland Exp $
*
* This program is free software; you
www.eeworm.com/read/148072/5718460
sql caiwu.sql
# Dump for Database caiwu
CREATE DATABASE caiwu;
# Dumping Table class
#
CREATE TABLE class (
id int(4) NOT NULL auto_increment,
name varchar(20) NOT NULL ,
PRIMARY KEY (id)
www.eeworm.com/read/147979/5718544
sql blog.sql
# MySQL-Front Dump 2.5
#
# Host: localhost Database: blog
# --------------------------------------------------------
# Server version 4.1.10-nt
#
# Table structure for table 'boardinfo'
#
www.eeworm.com/read/147391/5730214
sql customers.sql
DROP TABLE CUSTOMERS;
CREATE TABLE CUSTOMERS
(
CUSTOMERID NUMBER(10) NOT NULL,
CUSTOMERTYPEID NUMBER(10) NOT NULL ,
CUSTOMERFIRSTNAME VARCHAR(25),
CUSTOME
www.eeworm.com/read/147391/5730215
sql postalcodes.sql
DROP TABLE POSTALCODES;
CREATE TABLE POSTALCODES
(
POSTALCODE VARCHAR(12) NOT NULL,
CITY VARCHAR(30) NOT NULL,
STATEPROV VARCHAR(30) NOT NULL,
COUNTRYID NUMBER(10) N
www.eeworm.com/read/147091/5733460
sql compute.sql
--对计算列使用表达式
--下例显示如何使用表达式 ((low + high)/2) 计算 myavg 计算列。
CREATE TABLE mytable
(
low int,
high int,
myavg AS (low + high)/2
)