About 80,500 results
Open links in new tab
  1. mysql - How to give comments in SQL - Stack Overflow

    Oct 22, 2014 · MySQL Server supports three comment styles: From a # character to the end of the line. From a -- sequence to the end of the line. In MySQL, the “-- ” (double-dash) comment style requires …

  2. What Is The Correct Way To Comment in SQL? [closed]

    Dec 22, 2019 · 2 Commenting basics: -- for single line comments /* (start comment) */ (end comment) You should comment your SQL, but try to do it in a usefull way. What does my Query do? Is there …

  3. How can I comment special \ commands in PostgreSQL's psql …

    He asks how to comment in psql interactive console scripts (i.e. include commenting its backslashed meta-commands, which is the trick), not how comment the regular Postgres SQL.

  4. SQL comment header examples - Stack Overflow

    Would just like too see what peoples Stored Procedure/Function etc comment headers look like (so post your examples)...I've only really seen what the SQL Server Management Studio creates but am

  5. MySql Comment Syntax - What's the difference between "#" and

    Jul 18, 2014 · 0 Both Oracle and SQL Server (as well as DB2 and others) support the -- and /* */ (multi-line) comment standard. So it's a good habit to use the same style in MySQL, as you will probably …

  6. sql - Oracle create table with column comments - Stack Overflow

    May 9, 2012 · I'm afraid the "annoying" COMMENT ON syntax is the only way of doing this. SQL Server, PostgreSQL and DB2 use the same syntax (even though, as far as I know, there is no ANSI …

  7. How can I add comments in MySQL? - Stack Overflow

    Feb 1, 2012 · I want to add comment in SQL code. How can I do this? I'm using MySQL.

  8. How to add a comment to an existing table column in SQL Server?

    Jan 26, 2012 · 22 That depends on what you mean by "comment". If you want to add descriptive text to a column, you can set the Column Description using SQL Server Management Studio: Table Column …

  9. How do I comment SQL code out in Microsoft Access?

    Jun 30, 2010 · Is it possible to comment code out in the SQL window in Microsoft Access?

  10. SQL to add column and comment in table in single command

    Jul 3, 2012 · COMMENT ON COLUMN product.product_description IS 'This is comment for the column'; But I want to do above task in single command. I searched on internet for a command to add a …