代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/300762/3844777
sql shoppingcart.sql
drop table if exists cart_user;
drop table if exists cart_product;
drop table if exists cart_order;
drop table if exists cart_order_item;
create table cart_user(
id integer auto_increment prim
www.eeworm.com/read/300476/3846840
java sql.java
/**
*
*/
package cn.hebut;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
/**
* @autho
www.eeworm.com/read/299743/3850999
sql bb.sql
prompt PL/SQL Developer import file
prompt Created on 2008年3月15日 by new
set feedback off
set define off
prompt Disabling triggers for SIGNON...
alter table SIGNON disable all triggers;
prompt Di
www.eeworm.com/read/299743/3851001
sql aa.sql
-------------------------------------------
-- Export file for user SHOPPING --
-- Created by new on 2008-3-15, 15:08:02 --
-------------------------------------------
spool aa.log
pr
www.eeworm.com/read/299541/3851533
sql linq.sql
CREATE TABLE user_tbl (
id INT UNSIGNED AUTO_INCREMENT,
name CHAR(16) NOT NULL,
passwd CHAR(32) BINARY NOT NULL,
lasttime INT UNSIGNED NOT NULL,
PRIMARY KEY(id),
UNIQUE INDEX(name)
);
www.eeworm.com/read/298952/3857712
sql structure.sql
-- 修改友情链接名称字段长度为 255
ALTER TABLE `ecs_friend_link` CHANGE `link_name` `link_name` VARCHAR( 255 ) NOT NULL;
www.eeworm.com/read/298952/3857714
sql data.sql
--增加文章标题的长度设置
INSERT INTO `ecs_shop_config` ( `id` , `parent_id` , `code` , `type` , `store_range` , `store_dir` , `value` )
VALUES (
'325', '3', 'article_title_length', 'text', '', '', '30'
);
www.eeworm.com/read/298952/3857716
sql structure.sql
ALTER TABLE `ecs_activity`
CHANGE `name` `name` VARCHAR( 120 ) NOT NULL;
ALTER TABLE `ecs_ad`
CHANGE `position_id` `position_id` SMALLINT UNSIGNED NOT NULL DEFAULT '0',
CHANGE `ad_link`
www.eeworm.com/read/298952/3857722
sql data.sql
-- 增加排行统计时间的选项设置
INSERT INTO `ecs_shop_config` ( `id` , `parent_id` , `code` , `type` , `store_range` , `store_dir` , `value` )
VALUES (
'222', '2', 'top10_time', 'select', '0,1,2,3,4', '', '0'
);
www.eeworm.com/read/298952/3857727
sql structure.sql
ALTER TABLE `ecs_activity`
CHANGE `activity_id` `activity_id` smallint(5) unsigned NOT NULL auto_increment,
CHANGE `start_time` `start_time` int(10) unsigned NOT NULL default '0',
CHANGE `