About 16,900 results
Open links in new tab
  1. How to comment & uncomment multiple line SQL code in …

    Apr 3, 2019 · 3 Documentation for how to comment out queries can be found Here. But in short, press Ctrl + slash (/) together to toggle between commented/uncommented on highlight lines. …

  2. Shortcuts to comment and uncomment SQL queries in SQL Server …

    Aug 22, 2022 · To comment 3 SQL queries with shortcuts in SQL Server Management Studio(SSMS) as shown below, first, I dragged them, then pressed only one of CTRL+K or …

  3. Are there multiline comment delimiters in SQL that are vendor …

    Aug 22, 2022 · Are there multiline comment delimiters in SQL that are vendor-agnostic? Asked 16 years, 6 months ago Modified 3 years, 1 month ago Viewed 21k times

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

    From the official documentation: PostgreSQL Comments. A comment is a sequence of characters beginning with double dashes and extending to the end of the line, e.g.: -- This is a standard …

  5. commenting in spark sql - Stack Overflow

    Aug 6, 2021 · For single line comment we should use -- and for multiline /* comments */. Actually comment is working in your case, problem is - spark ignores those comments after that it looks …

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

  7. mysql - How to give comments in SQL - Stack Overflow

    Oct 22, 2014 · A candidate (2009) is Are there multiline comment delimiters in SQL that are vendor agnostic?. Its answers covers both single-line -- and C style /* */. A more specialised …

  8. Is there a way to make a multi line comment in hive scripts

    Apr 19, 2012 · I know that we can make a single line comment with '--' in hiveQL(hive.sql scripts) but is there a way to make multi line comments? I need something like below /* This sentence …

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

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