Owner: | dbo |
Schema bound: | |
Encrypted: | |
Creation Date: | 08/06/2000 |
Description: |
Name | Data Type | Length | NULL | IsGUID | Description | |
|
ProductID | int | 4 |
|
|
|
|
ProductName | nvarchar | 80 |
|
|
Objects that [dbo].[Current Product List] depends on
Object Name | Owner | Object Type | Dep Level | |
|
Categories | dbo | Table | 1 |
|
Suppliers | dbo | Table | 1 |
|
Products | dbo | Table | 2 |
create view "Current Product List" AS
SELECT Product_List.ProductID, Product_List.ProductName
FROM Products AS Product_List
WHERE (((Product_List.Discontinued)=0))
--ORDER BY Product_List.ProductName
See Also
List of views