摘要: #include <iostream> using std::cout; // 函数 面向过程编程 int add1(int a, int b){ return a + b; } // 对象 面向对象编程 class Add{ public: int operator() (int a, int b 阅读全文
posted @ 2022-08-26 13:26 htj10 阅读(24) 评论(0) 推荐(0) 编辑
摘要: -- 判断是否是数字 select * from (select '12' col1 from dual) where trim(translate(col1,'0123456789',' ')) is NULL; select name , case when trim(translate(col 阅读全文
posted @ 2022-08-26 10:41 htj10 阅读(344) 评论(0) 推荐(0) 编辑
TOP