Mysql将SQL查询结果以字符串形式返回

/**
   * 根据房源号查询所有的物品id
   * 
   * @param houseBillBo
   * @return
   */
  @Query(value = "select group_concat(\"'\",id,\"'\") from financial_style_productitem_detailed f where f.house_bill_no=?1", nativeQuery = true)
  String findByHouseBillNoToString(String houseBillBo);

 

主要使用group_concat()函数

posted @ 2018-09-21 14:36  小草1234  阅读(1799)  评论(0编辑  收藏  举报