sql = "select m.id, m.mobile, m.destid, m.content from cs_user u, CS_MO_SMGP m where u.extend = substr(m.destid, 9,4) and u.id = " +
userid + " and m.ifflag=0 and rownum<=20"
斯特凡今天也很帅的博客 使用SQL完成下面的统计分析功能。 1、客户信息分析 1).最受欢迎的信用卡 按照最多用户拥有来查找 select credit_type from customer_details group by credit_type order by count(credit_type) desc limit 1; 2)....