03 2022 档案

摘要:1 https://jingyan.baidu.com/article/46650658e8b08bf549e5f8fa.html 阅读全文
posted @ 2022-03-30 15:09 优敏行 阅读(10) 评论(0) 推荐(0) 编辑
摘要:系统已上线,给客户修改bug的时候,使用delete语句删表数据,没想到库没切换成测试库。误删了正式库的数据,而且一次备份都没有做过,玩大了 不扯了,进入主题 网上很多方法,都是针对至少有一次备份的情况下进行数据恢复的,没有备份就基本上只能找数据恢复公司了。本章将通过日志来恢复误删的数据,若是日志文 阅读全文
posted @ 2022-03-25 16:25 优敏行 阅读(667) 评论(0) 推荐(1) 编辑
摘要:刷新修改,智能帮助,额度管控 回写字段,就是加过滤条件。 == 1.2 1 先给帮助加过滤条件。 然后再补充,完善 2 设置参考链接 https://www.cnblogs.com/zhuiqiuzhuoyueyouminxing/p/16035928.html 01 其他先不要动,只把帮助添加上, 阅读全文
posted @ 2022-03-23 16:46 优敏行 阅读(51) 评论(0) 推荐(0) 编辑
摘要:1 客户名称列表字段,帮助添加 2 3 4 检查2个不同的地方。就是必须修改的地方。 4.1 4.1.1 字段映射,修改一致 4.3 客户字段的成功添加 阅读全文
posted @ 2022-03-23 16:35 优敏行 阅读(28) 评论(0) 推荐(0) 编辑
摘要:1 2 2.3 4 效果 阅读全文
posted @ 2022-03-22 19:13 优敏行 阅读(19) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< 阅读全文
posted @ 2022-03-21 15:38 优敏行 阅读(32) 评论(0) 推荐(0) 编辑
摘要:1 以书写位置代码为案例 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <ti 阅读全文
posted @ 2022-03-15 18:57 优敏行 阅读(16) 评论(0) 推荐(0) 编辑
摘要:如果您仅仅管技术的事情,当然是只拿到技术开发的薪资待遇水平。 多管事情了,也必然多拿多管事情的薪酬,比如业务方面,管了就要多拿薪水,这是职场工作中,必然的事情了。 一份付出一份收货. 仅仅管好自个份内的事情,必然可控因素相对少,是可控的。但是一旦加入了外人进来,就增加了不可控因素了。 一方沟通不到位 阅读全文
posted @ 2022-03-12 11:51 优敏行 阅读(183) 评论(0) 推荐(0) 编辑
摘要:--查询学生表 select * from student; --查询老师表全部数据 select * from teacher; --查询中间表03 关联老师表,学生表 select * from t_s; --01 小红的老师是谁 select * from t_s left join stud 阅读全文
posted @ 2022-03-10 11:40 优敏行 阅读(501) 评论(0) 推荐(0) 编辑
摘要:--01 部门表 create table t_dept( ID int identity(1,1), Depname varchar(100) null, --部门名称 loc nvarchar(100) null,-- Location 所在地 primary key(ID) ); go --查 阅读全文
posted @ 2022-03-09 15:30 优敏行 阅读(267) 评论(0) 推荐(0) 编辑
摘要:1 -- 多对多表查询 /* 创建student(id,name) teacher(id,name) 和关系表 t_s(tid,sid) 保存以下数据: 仓老师:小明 小红 小绿 小蓝 范老师:小张 小李 1. 查询每个学生对应的老师 2. 查询苍老师的学生有哪些 3. 查询小红的老师是谁 */ - 阅读全文
posted @ 2022-03-09 15:13 优敏行 阅读(96) 评论(0) 推荐(0) 编辑
摘要:--查询表演专业的女学生 有多少人 select * from TLstudent as a left join MajorF as b on a.MajorID=b.MajorID -- 02 关联字段的确认 where b.majorid=2 and gender='女'; --01 最核心的一 阅读全文
posted @ 2022-03-08 18:06 优敏行 阅读(42) 评论(0) 推荐(0) 编辑
摘要:1 --单表查询 学生表 select * from st; -- count query 查询全部学生的数量 137 select count(*) as 全部学生人数 from st; --查询全部女生人数 基础条件查询 select count(*) as 全部女生人数 from st whe 阅读全文
posted @ 2022-03-05 11:46 优敏行 阅读(178) 评论(0) 推荐(0) 编辑
摘要:case when定义 用于判断计算条件列表的表达式,并且返回可能的结果之一.。简单say 就是如果就的意思. The expression used to judge the list of calculation conditions and return one of the possible 阅读全文
posted @ 2022-03-02 11:22 优敏行 阅读(47) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示