ckrusen
(Calvin Krusen)
1
I have a BAQ that needs some debugging, and I’ve removed subqueries but the top level query has a calculated field that references a subquery.
Instead of deleting the Calc field (or replacing its formula with a constant), is there a way to “comment out” the current expression?
Larry-CS
(Larry Tracey)
2
Try this ‘’/* current expression */ Should show blank without deleting the current expression.
1 Like
jkane
(John Kane)
3
You could also try putting the SQL comment out of –
ckrusen
(Calvin Krusen)
4
Surprisingly the /* ... */
works.
I was afraid that using -- ....
would comment out the rest of the line, and could mess up the SQL phrase.