05 2018 档案

摘要:public static void PrintPersons() { //准备数据 DataTable dt = new DataTable(); dt.Columns.Add(new DataColumn("ID", typeof(int))); dt.Columns.Add(new DataC 阅读全文
posted @ 2018-05-25 11:29 Debugs 阅读(187) 评论(0) 推荐(0)
摘要:CREATE OR REPLACE TRIGGER trg_quote_otherArea_to_list before insert or delete or update of modify_date on tab_quote_other_area for each rowdeclare int 阅读全文
posted @ 2018-05-24 09:38 Debugs 阅读(138) 评论(0) 推荐(0)
摘要:case when里的like功能 假如要用到case when又要用到like这样的功能,即如果字符串包含‘语文’就怎么怎么样,包含‘数学’就怎么怎么样,包含‘英语’就怎么怎么样,like是用于where中的,放在case when里面是无效的,可以用instr()这个函数来查找这些字符出现的位置 阅读全文
posted @ 2018-05-07 10:48 Debugs 阅读(3971) 评论(0) 推荐(0)