TSQL de View ile çalışma

x

x

 

USE [Chinook]
GO

CREATE VIEW [AbumlerArtistler]
AS
SELECT     Album.Title, Artist.Name
FROM         Album INNER JOIN
                      Artist ON dbo.Album.ArtistId = Artist.ArtistId
GO

View düzenlemek için

USE [Chinook]
GO

ALTER VIEW [AbumlerArtistler]
AS
SELECT     Album.AlbumId, Album.Title, Artist.Name
FROM         Album INNER JOIN
                      Artist ON dbo.Album.ArtistId = Artist.ArtistId
GO

x

x

 

Add comment

The file '/Custom/Widgets/Calendar/widget.cshtml' does not exist.The file '/Custom/Widgets/Category list/widget.cshtml' does not exist.The file '/Custom/Widgets/Tag cloud/widget.cshtml' does not exist.The file '/Custom/Widgets/Page List/widget.cshtml' does not exist.The file '/Custom/Widgets/Month List/widget.cshtml' does not exist.