“Comentarios de SQL” Código de respuesta

Comentarios de 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

comentario sql

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

Comentarios de SQL

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

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

Comentarios de SQL

--Select all:
SELECT * FROM Customers;
naly moslih

Comentario sql

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

Comentarios de SQL dentro de las declaraciones

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

Respuestas similares a “Comentarios de SQL”

Preguntas similares a “Comentarios de SQL”

Más respuestas relacionadas con “Comentarios de SQL” en Sql

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código