1
vote
WHERE x IN (5) vs WHERE x = 5 … why use IN?
No, it's not a trick. The two statements:
SELECT * FROM pages WHERE is_visible IN ($visibility)
SELECT * FROM pages WHERE is_visible = $visibility
are nearly equi …
2
votes
SQL join condition A=B or reverse to B=A?
It doesn't really matter, both are correct. My preference is for the second.
My preference is based on the idea that table BBB is the table I'm adding into the result set, and the job at h …
3
votes
Constituents of a good relational database design
For an OLTP system, the primary key for all Entity tables should be defined as:
simple (single column, basic datatype)
anonymous (meaningless, carries no semantic meaning) …
