Comments

  

Practice with comments and other collaboration features in Word by downloading this Collaborate in Word learning guide. You can edit a comment by selecting Edit comment under the More thread actions drop down menu, which can be found in the top right hand corner of the comment. Comments start with a doublehyphen. In lua, comments start with a doublehyphen and run until the end of the line: - This is a comment print 'Hello World!' Block comments start with doubleshovel and run until doubleclosebox: -Comments can be spread across several lines print 'Hello World!' Latest opinion, analysis and discussion from the Guardian. CP Scott: 'Comment is free, but facts are sacred'. Insert or delete comments that appear in a document margin. Bubbles in the margin indicate where someone has left a comment. Practice with comments and other collaboration features in Word by downloading this Collaborate in Word learning guide. Notes can come in all sorts of shapes and sizes. They vary, and their uses are completely up to the person writing the code. However, I try to keep things consistent in my code that way it's easy for the next person to read. So something like this might help.

SQL Comments

Comments are used to explain sections of SQL statements, or to prevent execution of SQL statements.

Note: The examples in this chapter will not work in Firefox and Microsoft Edge!

Comments are not supported in Microsoft Access databases. Firefox and Microsoft Edge are using Microsoft Access database in our examples.

Comments On Yahoo

Single Line Comments

Single line comments start with --.

Any text between -- and the end of the line will be ignored (will not be executed).

The following example uses a single-line comment as an explanation:

Example

Try it Yourself »

The following example uses a single-line comment to ignore the end of a line:

Example

Try it Yourself »

The following example uses a single-line comment to ignore a statement:

Example

Comments
--SELECT * FROM Customers;
SELECT * FROM Products;
Try it Yourself »Comments in python

Multi-line Comments

Multi-line comments start with /* and end with */.

Any text between /* and */ will be ignored.

The following example uses a multi-line comment as an explanation:

Example

/*Select all the columns
of all the records
in the Customers table:*/
SELECT * FROM Customers;
Try it Yourself »

The following example uses a multi-line comment to ignore many statements:

Example

/*SELECT * FROM Customers;
SELECT * FROM Products;
SELECT * FROM Orders;
SELECT * FROM Categories;*/
SELECT * FROM Suppliers;
Try it Yourself »

To ignore just a part of a statement, also use the /* */ comment.

The following example uses a comment to ignore part of a line:

Example

SELECT CustomerName, /*City,*/ Country FROM Customers;
Try it Yourself »

The following example uses a comment to ignore part of a statement:

Example

Comments Html

SELECT * FROM Customers WHERE (CustomerName LIKE 'L%'
OR CustomerName LIKE 'R%' /*OR CustomerName LIKE 'S%'
OR CustomerName LIKE 'T%'*/ OR CustomerName LIKE 'W%')
AND Country='USA'
ORDER BY CustomerName;
Try it Yourself »

A reader asks about these three words:

I was wondering about the differences between comment, suggestion, and feedback. They often seem to be used interchangeably. I would like to know how to use each word appropriately in different contexts.

Here are the relevant definitions of these words in the context of social media:

commentnoun: a remark or criticism on or upon anything.

suggestionnoun: an idea or thought suggested, a proposal.

feedbacknoun: information about the result of a process, experiment, etc.

The word comment has the broadest application because a comment can contain a suggestion or provide feedback.

The comments that follow the posts on this site provide examples of all three terms.

Comment

Carnival – The word derives from a phrase meaning “the putting away of flesh”… as in the fasting from meat as Christians [according to traditional dogma] are supposed to do during Lent. It became an event of feasting and revelry because it’s the last chance for the next 6 weeks to indulge in that delicious pot roast, steak dinner, or other self-gratifications.

The reader has added information relating to a post about words derived from a Latin word meaning flesh. This kind of comment enriches the site by expanding the post in a relevant manner.

Suggestion

Could you also clarify and explain the origins of “chalk it up”. I’ve also seen “chock it up” which I assume is an error. I’ve also heard “chop it up” in the same context.

This reader, in commenting on the post about chock-full, has made a suggestion for a future post. Such suggestions keep me supplied with topics.

Feedback

I think your spelling of “cockeyeed” is incorrect. I think it is spelled cockeyed. (minus one “e”)

Feedback can be positive or negative. Comments that express agreement or appreciation let writers know they’re on the right track with their intended audience. Comments that point out errors or ambiguity enable the writer to improve a published post.

NOTE: I like to receive feedback that points out typographical errors by way of email, rather than in the open comments section—and not just to minimize my embarrassment. When the error has been corrected in the post, the comment remains as a distraction to future readers.

The figurative use of feedback derives from a technical term relating to electronics:

feedbacknoun: The return of a fraction of the output signal from one stage of a circuit, amplifier, etc., to the input of the same or a preceding stage, “positive feedback” tending to increase the amplification; “negative feedback” tending to decrease the amplification. Also, a signal so returned.

I’ll take this opportunity to thank my readers for all three—comments, suggestions, and feedback. They are and have been of tremendous benefit to me, as a blogger and as a student of English.

Related post:
Comment Etiquette

Want to improve your English in five minutes a day? Get a subscription and start receiving our writing tips and exercises daily!

Keep learning! Browse the Vocabulary category, check our popular posts, or choose a related post below:

Stop making those embarrassing mistakes! Subscribe to Daily Writing Tips today!

  • You will improve your English in only 5 minutes per day, guaranteed!
  • Subscribers get access to our archives with 800+ interactive exercises!
  • You'll also get three bonus ebooks completely free!
Try It Free NowComments