0
votes
PostgreSQL - tree organization
I've become fond of the the nested set model for this kind of situation. The Updates and Inserts can be a bit tricky, but the selects are usually very concise and fast. The performance can be even …
0
votes
What’s the optimal solution for tag/keyword matching?
Well maybe something like the follwing:
select p.productId, p.name, r.rank
from products p inner join (
/* this inner select should bring in only products that have at least one key …
