There are three tables, table a, table b, and table c. Table b combines id's from the other two tables to define a 1-to-(1 to 3) relationship between a and c. So any a will have between 0 and 3 c's.
Performing joins and multiple selects to do validation on objects based on these relationships is too costly. I am trying to get rid of table b altogether, and define the relationships, in order of c.id, in table a.
What is the update query I'm supposed to run? I tried this:
UPDATE a SET c_a = (SELECT c_id from b WHERE a_id = a.id LIMIT 0,1 ORDER BY c_id asc);
UPDATE a SET c_b = (SELECT c_id from b WHERE a_id = a.id LIMIT 1,1 ORDER BY c_id asc);
UPDATE a SET c_c = (SELECT c_id from b WHERE a_id = a.id LIMIT 2,1 ORDER BY c_id asc);
but that failed, because you cannot use LIMIT in a subquery in MySQL.
How do you do this in SQL?
CHECKconstraint to effectively enforce the "between 0 and three" rule. However, MySQL does not actually checkCHECKconstraints (other than to parse them -- big deal!) so all bets are off. Have you considered PostgreSQL? – onedaywhen Sep 26 '11 at 8:42