docs.RepoObject_PlantUml_PumlEntityFkList - V
type: V ( view ), modify_date: 2022-09-08 16:31:26
RepoObject_guid: 1D224606-439A-EB11-84F5-A81E8446D5B0
Columns
PK | Column Name | Data Type | NULL? | ID |
---|---|---|---|---|
1 |
|
|
||
|
|
|||
|
|
|||
|
|
Indexes
PK_RepoObject_PlantUml_PumlEntityFkList
-
IndexSemanticGroup: no_group
-
[column-RepoObject_guid]; uniqueidentifier
-
-
PK, Unique, Real: 1, 1, 0
idx_RepoObject_PlantUml_PumlEntityFkList__2
-
IndexSemanticGroup: no_group
-
[column-cultures_name]; nvarchar(10)
-
-
PK, Unique, Real: 0, 0, 0
Column Details
sql_modules_definition
docs.RepoObject_PlantUml_PumlEntityFkList - V script
CREATE View docs.RepoObject_PlantUml_PumlEntityFkList
As
Select
ro.RepoObject_guid
, rop.cultures_name
, RepoObject_fullname2 = Max ( ro.RepoObject_fullname2 )
, PumlEntityFkList = String_Agg ( Cast(rop.RepoObject_PumlOnlyIndex As NVarchar(Max)), Char ( 13 ) + Char ( 10 )) Within Group(Order By
ro.included_RepoObject_fullname2)
From
repo.RepoObject_related_FK_union As ro
Inner Join
docs.RepoObject_Plantuml_Entity_T As rop
On
rop.RepoObject_guid = ro.included_RepoObject_guid
Group By
ro.RepoObject_guid
, rop.cultures_name
sql