Status for a Mixed Filter
The order list searches orders either for user_id = 1 or for status = 'paid'. The user side is already supported, but status is not. Add an index on status so the status side does not scan the whole order list.
Speed this query up with an index
SELECT * FROM orders WHERE user_id = 1 OR status = 'paid'
Kun CREATE/ALTER/DROP — ingen afsluttende SELECT nødvendig.
Log ind for at se indsendelseshistorik
Log indLog ind for at bruge AI-mentor
Log ind