https://yinglongwu.blog.csdn.net/article/details/107304208 博客配套资源(如果积分过高请评论或者私聊我降低积分)
2021-08-07 10:21:12 14KB mysql 数据库 超市订单管理系统
1
代码是我参考别人的,然后自己又做了大量的修改,适合初学者自己学习,或者参考做课程设计啥的
2021-08-05 22:48:04 22.72MB OA mysql 自动建表 hibern
1
40条mysql测试建表数据以及答案,比如:查询学过“叶平”老师所教的所有课的同学的学号、姓名;查询“生物”课程比“物理”课程成绩高的所有学生的学号;根据课程ID查询学生ID;查询平均成绩大于60分的同学的学号和平均成绩;
2021-07-23 18:04:18 8KB 建表语句操作 相应答案
1
gulimall_pms 商品 drop table if exists pms_attr; drop table if exists pms_attr_attrgroup_relation; drop table if exists pms_attr_group; drop table if exists pms_brand; drop table if exists pms_category; drop table if exists pms_category_brand_relation; drop table if exists pms_comment_replay; drop table if exists pms_product_attr_value; drop table if exists pms_sku_images; drop table if exists pms_sku_info; drop table if exists pms_sku_sale_attr_value; drop table if exists pms_spu_comment; drop table if exists pms_spu_images; drop table if exists pms_spu_info; drop table if exists pms_spu_info_desc; /*==============================================================*/ /* Table: pms_attr */ /*==============================================================*/ create table pms_attr ( attr_id bigint not null auto_increment comment '属性id', attr_name char(30) comment '属性名', search_type tinyint comment '是否需要检索[0-不需要,1-需要]', icon varchar(255) comment '属性图标', value_select char(255) comment '可选值列表[用逗号分隔]', attr_type tinyint comment '属性类型[0-销售属性,1-基本属性,2-既是销售属性又是基本属性]', enable bigint comment '启用状态[0 - 禁用,1 - 启用]', catelog_id bigint comment '所属分类', show_desc tinyint comment '快速展示【是否展示在介绍上;0-否 1-是】,在sku中仍然可以调整', primary key (attr_id) ); alter table pms_attr comment '商品属性'; /*==============================================================*/ /* Table: pms_attr_attrgroup_relation */ /*==============================================================*/ create table pms_attr_attrgroup_relation ( id bigint not null auto_increment comment 'id', attr_id bigint comment '属性id', attr_group_id bigint comment '属性分组id', attr_sort int comment '属性组内排序', primary key (id) ); alter table pms_attr_attrgroup_relation comment '属性&
2021-07-22 17:00:48 26KB 尚硅谷
1
基于oracle或者mysql生成自动建表同步源数据表结构及注释
2021-07-20 16:04:54 12KB sql
1
JSP案例-仿淘宝,并采用了DWR技术来改善用户体验,分享给大家学习。
2021-07-12 09:34:42 9.1MB 仿淘宝 JSP案例 DWR
1
erp销售系统
2021-07-09 18:01:20 7KB 数据库设计
1
TDH建表语句汇总 外表 ES表 es分区表 es范围分区 ORC表范围分区表 TEXT表 TEXT表是文本格式的表,是Inceptor默认的表格式。在数据量大的情况下,TEXT表的统计和查询性能 都比较低; TEXT表也不支持事务处理,所以通常用于将文本文件中的原始数据导入Inceptor中; 不建议在任何计算场景中使用TEXT表; CREATE EXTERNAL TABLE test.t1_ext ( id string ,legal_no string ,branch_tree_no string ,branch_name string ,bran
2021-07-07 10:08:38 60KB partition string table
1
MAXIMO7.1安装建库SQL命令,经验总结!
2021-06-25 23:19:53 1018B MAXIMO安装
1
设计任务: 针对你所在班集体中的“人名”,设计一个哈希表,使得平均查找长度不超过R,完成相应的建表和查找过程。 设计要求: 1.每个人的信息至少包括姓名,电话,地址。至少包括对通讯录的创建,添加和按姓名查找等功能。 2.假设人名为汉语拼音全拼形式,待插入哈希表的长度为你所在班级的人数。哈希函数用除留余数法构造,采用链地址法或二次探测再散列法解决冲突。 3.完成菜单设计。操作有必要的提示。 实现提示: 假设人名最大长度不超过20,取码可以采用折叠处理,将每个字符对应的ASCII码求和。
2021-06-23 09:20:44 3KB 数据结构课程设计 哈希表 通讯录
1