- Timestamp:
- 01/11/25 01:23:10 (5 days ago)
- Branches:
- master
- Children:
- 0a7426e
- Parents:
- 1c51912
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
backend/GlobeGuru-backend/src/main/java/DatabaseUtil.java
r1c51912 rcd64b06 151 151 "FROM options o " + 152 152 "LEFT JOIN optionDetails od ON o.id = od.optionId " + 153 "WHERE (o.country LIKE ? OR o.hotelName LIKE ?)"; 153 "WHERE (o.country LIKE ? OR o.hotelName LIKE ?) " + 154 "AND od.type IS NOT NULL " + 155 "AND od.board IS NOT NULL " + 156 "AND od.price > 0"; 154 157 155 158 if (dateQuery != null && !dateQuery.isEmpty() && !dateFlag) { … … 200 203 return options; 201 204 } 205 202 206 203 207
Note:
See TracChangeset
for help on using the changeset viewer.