Commit c8a01e8

mo khan <mo@mokhan.ca>
2013-06-15 16:14:22
add n+1 example
1 parent 327adc1
Changed files (1)
samples/n_plus_q.sql
@@ -0,0 +1,5 @@
+SELECT  "cakes".* FROM "cakes"  LIMIT 10   
+SELECT  "users".* FROM "users"  WHERE "users"."id" = 1117 LIMIT 1   
+SELECT  "users".* FROM "users"  WHERE "users"."id" = 1972 LIMIT 1   
+SELECT  "users".* FROM "users"  WHERE "users"."id" = 1973 LIMIT 1   
+....
\ No newline at end of file