摘要: 如何将两个表的字段并列起来?请看以下列子A表:col1123B表:col2ABC结果:col1col21A2B3C实现代码:select T1.col1,T2.col2 from (select col1,row_number() over(order by col1) as row_numfrom tb1)T1,(select col2,row_number() over(order by col2) as row_numfrom tb1)T2where T1.row_num = T2.row_num 阅读全文
posted @ 2013-03-11 11:01 海藻 阅读(1035) 评论(0) 推荐(0) 编辑
摘要: /*汉字拼音的数据字典-共396个-通过组合声母和韵母*/var PinYin = {"a":"\u554a\u963f\u9515","ai":"\u57c3\u6328\u54ce\u5509\u54c0\u7691\u764c\u853c\u77ee\u827e\u788d\u7231\u9698\u8bf6\u6371\u55f3\u55cc\u5ad2\u7477\u66a7\u7839\u953f\u972d","an":"\u978d\u6c28\u5b89\u4ffa\ 阅读全文
posted @ 2013-02-28 11:26 海藻 阅读(2117) 评论(0) 推荐(0) 编辑