Definition
CREATE VIEW
[mr].[Object_State] AS
SELECT
[os].[State_Id] [Object_State_Id],
[ta].[Translation] [Object_State]
FROM
[dbo].[C_Object_State] [os]
LEFT JOIN [fw].[Translation] [ta] ON [ta].[Translation_key] = [os].[Name_Key]
Columns
| # | Column | Data Type | Nullable | Source |
|---|---|---|---|---|
| 1 | Object_State_Id | int | No | C_Object_State.State_Id |
| 2 | Object_State | nvarchar | Yes | Translation.TRANSLATION |