| 123456789101112131415161718192021222324252627 |
- -- match (a:"cypher:e1")-[:connect]->(b:"cypher2:e2")
- -- /**
- -- output()
- -- **/
- -- ;
- -- match (a:"cypher:e1")-[:connect]->(b:"cypher2:e2") with fields="day,vtime" return a.id as aid, a.name as aname , b.id as bid, b.name as bname
- -- /**
- -- output()
- -- **/
- -- ;
- match (a:"cypher:e1")-[:connect]->(b:"cypher2:e2") with fields="day,vtime" return a.id as aid, a.name as aname , b.id as bid, b.name as bname into temp001
- /**
- output()
- **/
- ;
- select * from temp001
- /**
- output()
- **/
- ;
|