Definition


CREATE   VIEW
  [mr].[Object_Type_Attribute_Type] AS
SELECT
  [r].[Attribute_Type_Id],
  [a].[Enum_Key] [Attribute_Type],
  [r].[Object_Type_Id],
  [o].[Enum_Key] [Object_Type],
  [r].[Has_User_Autofill],
  [r].[Is_Read_Only]
FROM
  [dbo].[R_Object_Attribute] [r]
  JOIN [dbo].[C_Attribute_Type] [a] ON [a].[Attribute_Type_Id] = [r].[Attribute_Type_Id]
  JOIN [dbo].[C_Object_Type] [o] ON [o].[Object_Type_Id] = [r].[Object_Type_Id]

Columns

#ColumnData TypeNullableSource
1Attribute_Type_IdintNoR_Object_Attribute.Attribute_Type_Id
2Attribute_TypenvarcharNoC_Attribute_Type.Enum_Key
3Object_Type_IdintNoR_Object_Attribute.Object_Type_Id
4Object_TypenvarcharNoC_Object_Type.Enum_Key
5Has_User_AutofillbitNoR_Object_Attribute.Has_User_Autofill
6Is_Read_OnlybitNoR_Object_Attribute.Is_Read_Only