About 576,000 results
Open links in new tab
  1. 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 …

  2. oracle database - Is it possible to comment out blocks of code that ...

    May 21, 2015 · Is it possible to comment out blocks of code that contain comments? edit : To clarify, I need this to be able to comment out large sections of code to check if a function I …

  3. oracle database - SQL to add column and comment in table in …

    Jul 3, 2012 · I am using Oracle 11g for my web application. I want to add a column and a comment to an existing table. I can do that easily with the below commands ALTER TABLE …

  4. sql - Multi line comment in oracle sqlplus - Stack Overflow

    Apr 17, 2018 · I have ran the below statements in sqlplus. It inserts duplicate of row 2. In log I have found that i row created after the comment line as well. So, here I am asking the multi …

  5. Update comment in Oracle SQL - Stack Overflow

    May 12, 2020 · I need to change (modify) comments in the table columns and comment to the table itself. How can I do it? Is there something like alter table command, that can do it?

  6. Oracle SQL adding multi-line table comment or column comment

    Oct 31, 2016 · Oracle SQL adding multi-line table comment or column comment Asked 11 years, 10 months ago Modified 9 years, 1 month ago Viewed 8k times

  7. Adding comment to a column of a view in oracle - Stack Overflow

    Nov 29, 2015 · Clearly it is possible to add a comment to describe a view, but is it possible to add a comment to describe an individual column of a view in oracle?

  8. oracle sqldeveloper - Commenting out in a bulk SQL developer

    May 11, 2022 · How to single comment out selected text in a bulk? I have 100+ lines of text that have to be commented out, single line each but idk how to do it, you can only comment out in …

  9. How to create a comment to an oracle database view

    May 15, 2012 · 10 I would really like to create a comment to a view with a short description of its purpose. Unfortunately it is not possible to create comments to views in oracle. This feature is …

  10. 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 …