1.excel打印区域虚线怎么取消
2.springdata-jpa 本地查询对::强转符号转换有误,把::转换成了:
所以用springdata-jpa是应把::符号替换为如上cast方法
例:
SELECT * from t_case d where ST_Distance(concat('SRID=4326;POINT(',?1,' ',?2,')')::geography, \n" +
"d.location::geography)<?3 ORDER BY ST_Distance(concat('SRID=4326;POINT(',?1,' ',?2,')')::geography,\n" +
"d.location::geography) DESC limit ?4
替换为:
SELECT * from t_case d where ST_Distance(CAST(concat('SRID=4326;POINT(',?1,' ',?2,')') as geography), \n" +
"CAST(d.location as geography))<?3 ORDER BY ST_Distance(CAST(concat('SRID=4326;POINT(',?1,' ',?2,')')as geography),\n" +
"CAST(d.location as geography)) DESC limit ?4