declare @t table(id int,num int) insert @t , union all , union all , --select * from @t ----查询 declare @idList varchar(),@numList varchar() set @idList = '' set @numList = '' select @idList = case @idList when '' then '' else @idList + ',' end + rtri
最近项目需求,需要获取Textview的行数,通过行数与TextView的maxLines进行比较来确定是否显示TextView下方的展开按钮是否显示,废话少说直接上代码,mTextView.getLineCount() ,似乎很美好,安卓有提供这个方法,但是总是返回0,这是为啥呢?官方注释如下: /*** Return the number of lines of text, or 0 if the internal Layout has not* been built.*/ 也就是说只有内部
Oracle一列的多行数据拼成一行显示字符 oracle 提供了两个函数WMSYS.WM_CONCAT 和 ListAgg函数. www.2cto.com 先介绍:WMSYS.WM_CONCAT 例: id name 1 aa 2 bb 3 cc 要的结果是"aa,bb,cc" select WMSYS.WM_CONCAT(a.name) from user a 这样的话,查询出的结果: