摘要: select 50.00 qty, trim(trailing '0' from 50.00) qty0, to_char(50.00, 'FM9999.999') qty1, trim(trailing '.' from to_char(50.00, 'FM9999.999')) qty2, rt 阅读全文
posted @ 2024-05-06 11:21 每天进步多一点 阅读(92) 评论(0) 推荐(0) 编辑
摘要: Oracle(+)号用法 select * from t_A a, t_B b where a.id=b.id(+); select * from t_A a left join t_B b on a.id = b.id; + 表示补充,即哪个表有加号,这个表就是匹配表。如果加号写在右表,左表就是全 阅读全文
posted @ 2024-05-06 10:50 每天进步多一点 阅读(207) 评论(0) 推荐(0) 编辑