“nombres de columna SQL Seleccione” Código de respuesta

Obtener nombre de columna SQL Server

SELECT *
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = N'Customers'
Joyous Jackal

Obtener columnas de tabla de SQL

SELECT *
FROM INFORMATION_SCHEMA.COLUMNS 
WHERE TABLE_NAME = N'Customers' 
-- INFORMATION_SCHEMA is an ANSI-standard (American National Standard Institute) set of read-only views which provide information about all of the tables, views, columns, and procedures in a database
-- "N" defines the subsequent string (the string after the N) as being in unicode
CodeHelper

Obtener nombres de columna de tabla SQL SSMS

SELECT COLUMN_NAME
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = 'Your Table Name'
ORDER BY COLUMN_NAME

-- IS_NULLABLE returns yes or no depending on null or not null
Chris PA

nombres de columna SQL Seleccione

/* How to select the column names in SQL*/

SELECT Column_name
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = N'your_table_name'
/* Just change the "your_table_name" ↑ to the name of your table */
Dark Dotterel

Cómo ver los nombres de la columna de una tabla en SQL

DESCRIBE Table_Name;

OR 

DESC Table_Name;
Delta Sierra

Respuestas similares a “nombres de columna SQL Seleccione”

Preguntas similares a “nombres de columna SQL Seleccione”

Más respuestas relacionadas con “nombres de columna SQL Seleccione” en Sql

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código