摘要:
winform中使用BindingSource绑定到dataGridView数据源,并进行增删改操作。 private BindingSource usersbinding;//定义数据源 //查询记录事件 List data = BLL.UserList();//获取对象集合 List data 阅读全文
摘要:
最近客户有个需求,输出一个日期,这个日期是在打印日期的基础上后延15天,并且自动跳过周末。 写一个函数进行调用 create or replace function F_GET_RQ(DyRq varchar2) return date -- select F_GET_RQ('2022-06-29' 阅读全文
摘要:
sqlserver 中 select * from yonghuxx t where t.yonghuh= (case when :yonghuh='' then t.yonghuh else :yonghuh end); oracle 中 select * from yonghuxx t wher 阅读全文
摘要:
首先得到年头年尾日期 select to_date('2020-01-01', 'yyyy-mm-dd') into v_start from dual; select to_date('2020-12-31', 'yyyy-mm-dd') into v_end from dual; 循环 WHIL 阅读全文