MySQL

A Neat Little SQL Trick

What’s Going On? Have you ever needed to select a subset of a table, based on non-contiguous identifiers? I used to either use a join for that or write an external script to SELECT * FROM whatever WHERE key=’val’, then loop through the results using them as needed. Recently, I ran across this neat little SQL operator, […]