| 12345678910111213141516171819202122232425 |
- MATCH (am:/matrix/oo/automobile/)-[*]->(tire:/matrix/oo/tire where brand = '普利司通') ,
- (am:/matrix/oo/automobile/)-[*]->(rim:/matrix/oo/rim where brand = '立中车轮')
- return tire.id as tireid , tire.name as "tirename", rim.id as rimid, rim.name as "rimname"
- /**
- output()
- **/
- ;
- MATCH (am:/matrix/oo/automobile/)-[*]->(tire:/matrix/oo/tire where brand = '普利司通') ,
- (am:/matrix/oo/automobile/)-[*]->(rim:/matrix/oo/rim where brand = '立中车轮')
- return tire.name as "tirename"
- /**
- output()
- **/
- ;
|