“Как прокомментировать в SQL” Ответ

SQL Комментарии

Single line comments start with –- Any text after these 2 characters to the end of the line will be
ignored.
Multiline comments start with /* and end with */. They stretch across multiple lines until the
closing characters have been found.
-- My Select query
/*
This is my select query.
It grabs all rows of data from the users table
*/
DevLorenzo

SQL Comment

/* 
This is a MULTI-LINE Comment
*/ 
-- This is Single-Line Comment
Undefined

Как прокомментировать в SQL

-- test 
Thomas Moorman

SQL Комментарии с заявлениями

SELECT * -- selects all records
FROM Students; -- from the Students table
SAMER SAEID

SQL Comment

-- Fetching all records from the Students table
SELECT *
FROM Students;
SAMER SAEID

SQL Комментарии

Single line comments start with --
-- Single Line Comments 

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

Ответы похожие на “Как прокомментировать в SQL”

Вопросы похожие на “Как прокомментировать в SQL”

Больше похожих ответов на “Как прокомментировать в SQL” по Sql

Смотреть популярные ответы по языку

Смотреть другие языки программирования