摘要:
-- 方法1 update b set b.status= 1 from t_bed_adapter b, t_adapter a where a.id = b.adapter_id and a.dept_code = '214' -- 方法2 update b set b.status = 1 f 阅读全文
摘要:
-- 查询第一行 -- 不包含排序时 select * from tm_pm_pay where hospital_code = '0002' and rownum = 1 -- 包含排序时 select * from (select * from tm_pm_pay t where hospita 阅读全文
摘要:
//获取指定日期所在月的第一天和最后一天 function getfirstDateAndlastDate(){ var dateStr = "2021-02-16 09:36:39"; var date = new Date(dateStr); var year = date.getFullYea 阅读全文