skip to Main Content

How can I optimize a database query in PostgreSQL

I am making an application that will select components for a computer for a certain amount. ER-diagramm: I make the following request: SELECT computercases.name, datastorage.name, motherboards.name, powersupply.name, processors.name, ram_memory.name, (computercases.price + motherboards.price + graphicscards.price + processors.price + ram_memory.price + datastorage.price…

VIEW QUESTION
Back To Top
Search