摘要: c# 中 Math.Round(2.5) 运行结果是2 你敢相信吗? 上源码: public static void Cs4() { // 输出内容到控制台 Console.WriteLine("请输入第一个字符串:"); // 接收用户输入,为变量赋值 string firstStr = Cons 阅读全文
posted @ 2020-12-15 14:13 求路问道 阅读(175) 评论(0) 推荐(0)
摘要: private void dgvData_CellPainting(object sender, DataGridViewCellPaintingEventArgs e) { //需要合并行的判断 if (e.RowIndex >= 0 && e.ColumnIndex >= 0 && e.Valu 阅读全文
posted @ 2020-12-05 09:27 求路问道 阅读(595) 评论(0) 推荐(0)
摘要: SELECT REGEXP_SUBSTR('first field, second field , third field', '[^,]+', 1, rownum) FROM DUAL CONNECT BY ROWNUM <= LENGTH('first field, second field , 阅读全文
posted @ 2020-11-30 17:52 求路问道 阅读(116) 评论(0) 推荐(0)
摘要: 先上查询语句 select u.c_user_id 用户编号, u.c_old_user_id 旧编号, u.c_user_name 用户名称, u.c_user_address 用户地址, 日志说明 日志说明, 操作人 操作人, 操作时间 操作时间, 备注原因 备注原因 from yx_user 阅读全文
posted @ 2020-10-27 10:26 求路问道 阅读(1125) 评论(0) 推荐(1)
摘要: http://www.lrxin.com/archives-1275.html 阅读全文
posted @ 2020-10-26 14:56 求路问道 阅读(285) 评论(0) 推荐(0)
摘要: select * from qx_role where N_role_id in ( 1,2,3) 运行结果: select to_char(wm_concat(c_role_name)) from qx_role where N_role_id in ( SELECT REGEXP_SUBSTR 阅读全文
posted @ 2020-06-12 10:40 求路问道 阅读(1521) 评论(0) 推荐(0)