摘要: 暂定五个功能: 1、数据层字典管理:用于区分表属于ods、dwd等哪一层 2、表分类字典管理:用于区分表是浏览、登录、销售等哪类数据 3、使用部门字典管理:用于区分表是营销部门、财务部门等哪些部门使用 4、表维护:维护表名、描述、列等 5、关系图查看:生成并查看表格字段的生产关系 阅读全文
posted @ 2024-10-28 14:12 我知道你的存在 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1、布局大概如下: 2、修改App.vue,增加菜单 <template> <div class="layout"> <el-container class="container"> <el-aside class="aside"> <!--系统名称+logo--> <div class="head 阅读全文
posted @ 2024-10-28 14:05 我知道你的存在 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 1、在项目根目录安装 vue-router:npm i vue-router@next【@next 代表的是安装最新的版本】 2、在 src 目录下新建 router/index.js,并添加路由配置项 // router/index.js import { createRouter, create 阅读全文
posted @ 2024-10-28 13:46 我知道你的存在 阅读(3) 评论(0) 推荐(0) 编辑
摘要: vue3+vite+element-plus 项目创建: 1、npm create vite@latest data-relationship -- --template vue 2、npm install 安装依赖 3、npm i element-plus 安装element-plus 4、修改 阅读全文
posted @ 2024-10-28 13:29 我知道你的存在 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 一、按照网络教程安装VM15 可参考:https://blog.csdn.net/Fly_1213/article/details/90897738 二、按照网络教程,VM安装 ubuntu-18.04.4 桌面版,桌面版是图形化界面,相对新手来说比较友好 可参考:https://www.jians 阅读全文
posted @ 2020-05-27 16:35 我知道你的存在 阅读(1014) 评论(0) 推荐(0) 编辑
摘要: with nodes as ( select * from users as child where child.id = 6 union all select par.* from users as par inner join nodes as rc on par.id = rc.pid ) s 阅读全文
posted @ 2018-06-11 15:02 我知道你的存在 阅读(459) 评论(0) 推荐(0) 编辑
摘要: Emoji表情其实也是字符,只不过是UTF8-mb4。SQL Server默认是支持的,至少亲测2005版及以后版是支持的。 但是如果你用C#,然后又是直接如下面这样写SQL语句,并不能得到所希望的结果,在表情字符位只会出现两个问号: insert into table1(id,msg) value 阅读全文
posted @ 2018-04-14 10:36 我知道你的存在 阅读(356) 评论(0) 推荐(0) 编辑
摘要: DEMO5 阅读全文
posted @ 2017-10-10 14:27 我知道你的存在 阅读(163) 评论(0) 推荐(0) 编辑
摘要: if (/Firefox\/\s/.test(navigator.userAgent)){ var socket = io.connect('127.0.0.1:8000',{transports:['xhr-polling']}); } else if (/MSIE (\d+.\d+);/.tes 阅读全文
posted @ 2016-09-30 17:02 我知道你的存在 阅读(1522) 评论(0) 推荐(0) 编辑
摘要: /* DataTable dtProduct = new DataTable(); dtProduct.Columns.Add("ID"); dtProduct.Columns.Add("Product"); DataRow dr1 = dtProduct.NewRow(); ... 阅读全文
posted @ 2016-09-22 10:28 我知道你的存在 阅读(243) 评论(0) 推荐(0) 编辑