代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/428850/1953225
sql structure.sql
-- 分类表增加样式的字段
ALTER TABLE `ecs_category` ADD `style` VARCHAR( 150 ) NOT NULL;
-- 增加办事处表
DROP TABLE IF EXISTS `ecs_agency`;
CREATE TABLE `ecs_agency` (
`agency_id` smallint(5) unsigned NOT NUL
www.eeworm.com/read/428850/1953234
sql structure.sql
ALTER TABLE `ecs_template` ADD `theme` VARCHAR( 30 ) NOT NULL FIRST;
ALTER TABLE `ecs_template` ADD INDEX ( `theme` );
ALTER TABLE `ecs_category` CHANGE `cat_name` `cat_name` VARCHAR( 180 ) NOT NU
www.eeworm.com/read/428850/1953235
sql data.sql
--标签管理的权限code
INSERT INTO `ecs_admin_action` ( `action_id` , `parent_id` , `action_code`)
VALUES (
NULL , '1', 'tag_manage'
);
--增加网站默认宣传图片的设置选项
INSERT INTO `ecs_shop_config` ( `id` , `par
www.eeworm.com/read/428850/1953626
sql structure.sql
-- --------------------------------------------------------
--
-- 表的结构 `ecs_ad`
--
DROP TABLE IF EXISTS `ecs_ad`;
CREATE TABLE `ecs_ad` (
`ad_id` smallint(5) unsigned NOT NULL auto_increment,
`p
www.eeworm.com/read/428543/1959205
sql emp.sql
create table emp
(
no number(12) not null,
upd_ts date not null,
name char(20) not null,
duty char(1) not null,
age number(6) not null,
salary number(12,2) not null,
www.eeworm.com/read/428543/1959212
sql emp.sql
create table emp
(
no number(12) not null,
upd_ts date not null,
name char(20) not null,
duty char(1) not null,
age number(6) not null,
salary number(12,2) not null,
www.eeworm.com/read/428543/1959219
sql emp.sql
create table emp
(
no number(12) not null,
upd_ts date not null,
name char(20) not null,
duty char(1) not null,
age number(6) not null,
salary number(12,2) not null,