代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/184888/5243770
sql jabber.sql
#
# DATABASE definition
#
DROP DATABASE IF EXISTS sip_jab;
CREATE DATABASE sip_jab;
USE sip_jab;
# jabber users
CREATE TABLE jusers(
juid INT NOT NULL AUTO_INCREMENT,
jab_id VARCHAR(128) NOT NUL
www.eeworm.com/read/184888/5243798
sql speeddial.sql
CREATE TABLE speed_dial (
username varchar(64) NOT NULL default '',
domain varchar(128) NOT NULL default '',
sd_username varchar(64) NOT NULL default '',
sd_domain varchar(128) NOT NULL defaul
www.eeworm.com/read/184888/5244009
sql msilo.sql
-- SQL script for MSILO module
DROP DATABASE IF EXISTS msilo;
-- create a database for storage
CREATE DATABASE msilo;
USE msilo;
-- create the table
CREATE TABLE silo(
-- unique ID per mess
www.eeworm.com/read/184888/5244048
sql pa.sql
-- Copyright (c) 2003, Hewlett-Packard Company
-- All rights reserved.
-- Redistribution and use in source and binary forms, with or without
-- modification, are permitted provided that the followin
www.eeworm.com/read/183938/5251053
sql installcommon.sql
/**********************************************************************/
/* InstallCommon.SQL */
/*
www.eeworm.com/read/183938/5251054
sql installmembership.sql
/**********************************************************************/
/* InstallMembership.SQL */
/*
www.eeworm.com/read/183938/5251061
sql installroles.sql
/**********************************************************************/
/* InstallRoles.SQL */
/*
www.eeworm.com/read/183938/5251095
sql installprofile.sql
/**********************************************************************/
/* InstallProfile.SQL */
/*
www.eeworm.com/read/183001/5258712
sql cube.sql
--
-- Test cube datatype
--
--
-- first, define the datatype. Turn off echoing so that expected file
-- does not depend on contents of cube.sql.
--
\set ECHO none
\i cube.sql
\set ECHO all
--
-- t