When you say SQL design view, do you mean the QBE grid? I'm not trying to do it there, but in the SQL window. <br>
eg<br>
SELECT TT.*, TTTG.*, STMA.*, SU.*<br>
FROM TT, TTTG, STMA, SU,<br>
TT INNER JOIN TTTG ON TT.TTKEY = TTTG.GKEY, <br>
STMA INNER JOIN SU ON STMA.MKEY = SU.SUKEY, <br>
TTTG INNER JOIN STMA ON TTTG.IDENT = STMA.IDENT<br>
WHERE (TT.TTKEY >= [From] AND TT.TTKEY <= [To]) AND HROW <> 0<br>
ORDER BY TTTG.SUBJ, TTTG.CLASS<br>
<br>
This isn't a particular query that I'm working on, I just grabbed one. I would like to be able to comment out one of the conditions, or in another example, comment out a grouping and an aggregate function. Currrently I cut these to the clipboard and paste them back, but since the're often non-adjacent, it's a bit cumbersome.