健康一贴灵,专注医药行业管理信息化
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 24 下一页
摘要: DataTable dt2 = DBHelperPg.ExecuteDataTable(sql); dgvStore.DataSource = dt2; string xmlFilename = "666.xml"; FileStream fsWriteXml = new FileStream(xm 阅读全文
posted @ 2022-08-11 14:10 一贴灵 阅读(493) 评论(0) 推荐(0) 编辑
摘要: C#逆向 反编译工具dotPeekdotPeek官网地址:https://www.jetbrains.com/decompiler/ 是 JetBrains 开发的一款.Net反编译工具,是.Net工具套件中的一个 将 .NET 程序集反编译为 C#dotPeek 是一款基于 ReSharper 捆 阅读全文
posted @ 2022-08-11 09:46 一贴灵 阅读(1792) 评论(0) 推荐(0) 编辑
摘要: 原文 :(79条消息) C#连接Oracle数据库_闲齁齁的博客-CSDN博客_c# oracle 1.C#连接Oracle数据库C#连接Oracle数据库目前常用的有三种方式:(1)System.Data.OracleClient.dll(微软)(2)Oracle.DataAccess.Clien 阅读全文
posted @ 2022-08-09 11:31 一贴灵 阅读(1123) 评论(0) 推荐(0) 编辑
摘要: using Microsoft.Win32; using System; using System.Collections.Generic; using System.IO; using System.Text; using System.Xml; namespace MAutoUpdate { p 阅读全文
posted @ 2022-08-09 09:30 一贴灵 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 如果想替换第3个位置的“b",为“E" string s = "bbbbbccc"; char[] c = s.ToCharArray(); c[3] = 'e'; s = new string(c); 阅读全文
posted @ 2022-08-05 08:25 一贴灵 阅读(1064) 评论(0) 推荐(0) 编辑
摘要: 1、Ms Sql Server SELECT getdate(); SELECT getdate()-90 ; -- 取90天前日期; select convert(varchar,getdate()-90,23); --转换为字符串,只取日期 SELECT year(getdate()); SEL 阅读全文
posted @ 2022-07-27 08:55 一贴灵 阅读(1370) 评论(0) 推荐(0) 编辑
摘要: --定义变量 1 a numeric; 方式一: 1 select sqla into a from table1 where b = '1' ; --这是sql语句赋值 方式二: 1 2 sql1:= 'select a from table1 where b = ' '1' ' '; execu 阅读全文
posted @ 2022-07-15 14:42 一贴灵 阅读(2267) 评论(0) 推荐(0) 编辑
摘要: select '202206' as yearmonth, c.name, sum(case when left(yearmonth,4) = left(to_char(to_date('202206','yyyymm') - interval '12 month','yyyymm'),4) and 阅读全文
posted @ 2022-07-12 16:52 一贴灵 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 查询员工ID select partner, bu_sort2,xdele,mc_name1 from but000 where bu_Group='Z005' string beginDate, endDate; //年月格式 :202201 beginDate = frmFlowWhere.Be 阅读全文
posted @ 2022-07-05 13:41 一贴灵 阅读(1311) 评论(0) 推荐(0) 编辑
摘要: CREATE TEMPORTY TABLE TMP_TESTABC (ID INT4,NAME TEXT) 生成临时表(会话结束后会自动删除) 创建临时表 select * into temp table tmp0 from xxx 一、根据原表创建临时表 CREATE TEMP TABLE tmp 阅读全文
posted @ 2022-05-30 17:04 一贴灵 阅读(3461) 评论(0) 推荐(0) 编辑
摘要: 清洗决策易的客户 select * from jcyclient where clientid=0 create index jcyclient_index on jcyclient(clientname) update jcyclient set clientname=replace(client 阅读全文
posted @ 2022-05-25 13:30 一贴灵 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 两个月不用QUERY做报表,记忆的河流已经干涸。 clear:zjhsl. ZJHSL = LIPS-LFIMG. IF LIKP-LFART = 'NCR' . ZJHSL = 0 - ZJHSL. ENDIF. = 前后要有空格 ; 阅读全文
posted @ 2022-05-23 13:59 一贴灵 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 烧脑的SQL label表用来保存标签 的值 。(id,name,parentid ,code基本上没有用到;) client表中有一个label整形数组字段,存储的是标签内容,如‘{5,14,16}’ select a.label,array_to_string(array_agg(b.name) 阅读全文
posted @ 2022-05-20 09:31 一贴灵 阅读(366) 评论(0) 推荐(0) 编辑
摘要: 在splitcontainer的使用过程中,初学者不容易找到调整列宽的地方, 1、在属性框中选择“splitContainer1”, 2按一下Esc,就可以拖动中间分隔线调整列宽了: Winform调试中,Esc键可以用来查找,控件的下层是哪个控件。 阅读全文
posted @ 2022-05-20 09:16 一贴灵 阅读(876) 评论(0) 推荐(0) 编辑
摘要: alter table 表名 alter 字段名 set not null; alter table log alter ip set not null; 阅读全文
posted @ 2022-05-19 10:12 一贴灵 阅读(556) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 24 下一页
学以致用,效率第一