Jump to content
Fórum Script Brasil
  • 0

Como Faço Para Criar Uma Visão No Sql


Guest - Douglas Barbosa -

Question

5 answers to this question

Recommended Posts

  • 0

Opa,

Para Criar uma Visão "View"

Deve seguir os seguintes passos

--Comando para criar a VW

Create view [Nome da View]
As --a tabela ou as tabelas usadas pela visão
select * From [nome da tabela]
-- Criei um Scrip para você rodar no Sql server espero q ajude. -- Criando 1° tabela
create table Tabela1 (
Id_tabela1	int
                               )
--Crianado 2° tabela
create table tabela2    (
Nome_Tabela2 Varchar (14),
Id_tabela2	int
                                  )
--inserindo dados na 1° tabela
insert into Tabela1 values (1) 
insert into Tabela1 values (2)
insert into Tabela1 values (3)
insert into Tabela1 values (4)
--inserindo dados na 2° tabela
insert into Tabela2 values ('matematica', 1)
insert into Tabela2 values ('Portugues',2)
insert into Tabela2 values ('Inglês', 3)
insert into Tabela2 values ('Geografia',4)
--Vamos criar uma visão usando as duas tabelas
Create view VW_Tabela1_tabela2
as select	
		a.Id_tabela1,	
		b.Nome_Tabela2	
from Tabela1 A,			
	 tabela2 B			
where A.Id_tabela1 = B.Id_tabela2
-- Visualizar nossa VW View
select * from VW_Tabela1_tabela2

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      651.8k
×
×
  • Create New...