Safe SQL: always be on TOP.
SQL likes being on TOP. It's really an issue of peace-of-mind when query building.Knowing your test query will never spin out of control.Safe SQL always uses TOP until the last moment. When crafting a compex query one baby step at a time, TOP keeps the intermediate results short, snappy, and safe. SELECT top 10 *... should be habitual.Make sure you know how to use TOP in all kinds of situations.
W3C TOP
W3C TOP