diff --git a/sitio/src/routes/search/+page.server.ts b/sitio/src/routes/search/+page.server.ts index 39c15d3..e0f9f9d 100644 --- a/sitio/src/routes/search/+page.server.ts +++ b/sitio/src/routes/search/+page.server.ts @@ -11,7 +11,7 @@ export const load: PageServerLoad = async ({ url }) => { join precios p on p.ean = f.ean where f.name match ${`"${query}"`} group by p.ean - having max(p.fetched_at) and max(p.in_stock) + having max(p.fetched_at) order by p.in_stock desc;`; results = db.all(sqlQuery); }