sql = "select voucherid,name,voucherlogo,voucherfrom,couflag,min(discount),avgprice,reviews,sname,tname,disflag from" +
         " (select a.voucherid,a.name,a.voucherlogo,a.voucherfrom,a.couflag,b.discount,e.avgprice,e.reviews," +
         " d.sname,c.tname,a.disflag from ((select * from zt_sh_voucher where disable=0 and status=0 and " +
         " sstatus=1 and cityid="+visitorCity+" and keyword like '%"+keyword+"%') a " +
         " inner join zt_sh_thrarea c on a.taid=c.taid inner join zt_sh_secsarea d on c.said=d.said " +
         " inner join zt_sh_vouchershops e on a.voucherid = e.voucherid) left join (select * from zt_sh_carddiscounts where status=1 " +
         " and disable=0 and date_format(starttime,'%Y-%m-%d')<='"+getToday()+"' and date_format(endtime,'%Y-%m-%d')>='"+getToday()+"') " +
         " b on a.voucherid = b.voucherid) v group by v.voucherid,v.name";求这个sql语句的总条数?