A common request of many users I have talked to, through nbusers, interviews and surveys, is making it easier to write queries in-place in their source editors.
This feature proposes a very simple solution that can have a huge increase in developer productivity and "flow."
The example shown below uses PHP syntax, but this could be applied just as easily to Java, C/C++ and other languages working with SQL (it doesn't apply so well to Ruby, since they use ActiveRecord, and Tor has already done this for ActiveRecord objects, bless his heart).
$sql = "SELECT
$sql = "SELECT -----------
| AUTOS |
| PEOPLE |
| PARTS |
| PREORDERS |
| STORES |
| ITEMS |
-----------
$sql = "SELECT -----------
| AUTOS |____________
| PEOPLE |ID |
| PARTS |FIRSTNAME |
| PREORDERS |LASTNAME |
| STORES |ADDR1 |
| ITEMS |ADDR2 |
-----------|CITY |
|STATE |
|ZIP |
-----------
$sql = "SELECT PEOPLE.LASTNAME
This feature, particularly combined with the Test Query feature, will significantly improve productivity and flow for users working with SQL in their source code.