Sha256: 9633ea3112cf70b61143351bf90e1910fc1539bd49440017e848b73068e9b515
Contents?: true
Size: 400 Bytes
Versions: 5
Compression:
Stored size: 400 Bytes
Contents
// vim: ft=javascript // Fetch list of all breweries paired with their associated beers, with the // list enumerating the brewery name and the beer name for each such pair, // while also limiting the answer set size to at most 3 results. { "statement": "SELECT bw.name AS brewer, br.name AS beer FROM breweries bw, beers br WHERE br.brewery_id = meta(bw).id ORDER BY bw.name, br.name LIMIT 3" }
Version data entries
5 entries across 5 versions & 2 rubygems