V
VWP1
Is there any "comment" characters I can use in SQL which will be ignored,
similar to HTML's <!-- comment --> ?
VWP1
similar to HTML's <!-- comment --> ?
VWP1
Is there any "comment" characters I can use in SQL which will be ignored,
similar to HTML's <!-- comment --> ?
VWP1
John W. Vinson said:We've been yelling at MS for years to add this feature, but... at present,
no.
About all you can do is a snarky getaround: creating a phony calculated
field,
e.g.
SELECT "This isn't a real field, just a comment" AS IgnoreThis, <other
fields>
FROM mytable...