“SQL Comment” Ответ

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 Comment

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

SQL Comment

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

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

-- test 
Thomas Moorman

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

SELECT *
FROM /* table name here */ Students;
SAMER SAEID

Ответы похожие на “SQL Comment”

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

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