“Tabela de exibição em SQL” Respostas de código

Obtenha a lista de todas as tabelas no SQL Server

SELECT TABLE_NAME
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_CATALOG='YOUR_Database_name'
Successful Stork

SQL Show Tables

Showing all table: 
show tables;

Showing table data:
SELECT
* or column_names
FROM
table_name;
Ankur

Como verificar o nome da tabela no banco de dados atual SQL

SELECT TABLE_NAME
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_CATALOG=db_name() 
and TABLE_NAME like'%table_name%'--to check particular table
Sparkling Shark

Retornar colunas da tabela SQL

SELECT *
FROM INFORMATION_SCHEMA.COLUMNS -- 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
WHERE TABLE_NAME = N'Customers' -- "N" defines the subsequent string (the string after the N) as being in unicode
CodeHelper

Tabela de exibição em SQL

SELECT * FROM TABLE_NAME;
Wicked Wolverine

Respostas semelhantes a “Tabela de exibição em SQL”

Perguntas semelhantes a “Tabela de exibição em SQL”

Mais respostas relacionadas para “Tabela de exibição em SQL” em Sql

Procure respostas de código populares por idioma

Procurar outros idiomas de código