メモ $node_id 列に インデックス貼ると、内部では graph_id_<hexstring> に列になるか試してみた。
ドキュメントに書いてたから試しただけ。
SQL Graph Architecture | Microsoft Docs
Node Table より引用
That is, an index created on the $node_id column, will appear on the internal graph_id_<hex_string> column.
create table Hoge ( Name nvarchar(20) not null primary key ) as node create index idx_Hoge_NodeId on Hoge ($node_id) select idc.column_id, col.name from sys.indexes id inner join sys.index_columns idc on id.object_id = idc.object_id and id.index_id = idc.index_id inner join sys.columns col on idc.object_id = col.object_id and idc.column_id = col.column_id where id.name = 'idx_Hoge_NodeId'
column_id | name |
---|---|
1 | graph_id_03ED99AB760344ACADAE09BE9D4478E4 |
おーほんとだ。