05 2020 档案
c# devexpress chartcontrol
摘要:一、Series Series 作为cartControl的基本单位来现实图表数据 所以每一个Series代表一种需要显示的类型。 首先实例化一个Series Series serie = new Series(Caption, ViewType.Line); //ViewType是ChartCon 阅读全文
posted @ 2020-05-30 09:51 michellexiaoqi 阅读(2441) 评论(0) 推荐(0)
cron表达式的用法
摘要:cron表达式的用法 1、每个整点和半点执行 0 0,30 0-23 * * ? " 2、每隔10秒执行一次 */10 * * * * ? 3、每隔10分钟执行一次 0 */10 * * * ? 阅读全文
posted @ 2020-05-27 10:30 michellexiaoqi 阅读(1922) 评论(0) 推荐(0)
Sql查询两个时间段有重叠的记录
摘要:https://blog.csdn.net/weixin_34130389/article/details/93705115 阅读全文
posted @ 2020-05-27 08:35 michellexiaoqi 阅读(822) 评论(0) 推荐(0)
在ORACLE中,如何比较两个表的数据是否相同,查询两个表内容不一致的内容
摘要:在ORACLE中,如何比较两个表的数据是否相同 比如A表的m列z有值(1,2,3,4,5),B表的n列有值(3,4,5,6,7,8)。要查找出(3,4,5,)三个值。 select t1.* from (select LCH,LGH from SJCJ_GLTSHY where JLSJ >=to_ 阅读全文
posted @ 2020-05-12 10:31 michellexiaoqi 阅读(7561) 评论(0) 推荐(0)