Wrox Home  
Search P2P Archive for: Go

  Return to Index  

access thread: SQL statement with comment


Message #1 by "kriz buenaventura" <vickriz@i...> on Wed, 18 Dec 2002 03:58:20
good day to all.

we have parameters of comment like this <!--comment-->, //single line 
comment, /*multi-line comnent*/...   in some prog language.
what i want to do is to insert a comment here in my SQL
SELECT 
   tblPoliticalPersonalities.ID, <i want to insert here my comment>
   tblPoliticalPersonalities.LastName,  <..here> 
tblPoliticalPersonalities.BirthDate,    <..here>
   tblPoliticalPersonalities.BirthPlace  <and here.>
FROM tblPoliticalPersonalities
WHERE (((tblPoliticalPersonalities.BirthDate) Is Null) AND 
((tblPoliticalPersonalities.BirthPlace) Is Null));

how can i put a comment inside or within a SQL statement??


  Return to Index