neo4j
Contents
- neo4j 3.x 数据表关联 neo4j console
create ( base_information:table {tableName:’ base_information’,comment:’用户基本信息表’,tableType:’FACT’,updateType:’ALL’,level:’ods’,dataBase:’ods_insurance’,comment:’xxx保险ods’,cluster:’insurance_cluster’,base:’’})
create ( base_information1:table {tableName:’base_information1’,comment:’用户基本信息表1’,tableType:’FACT’,updateType:’ALL’,level:’dwd’,dataBase:’dwd_insurance’,comment:’xxx保险dwd’,cluster:’insurance_cluster’,base:’insurance_fact_user_base_information’})
match (m:table),(n:table)
where m.tableName = n.base
create (m)-[:FROM]->(n)