But if just pasted the cypher onto the neo4j browser, it will just set the parameters successfully.
Can anyone tell me what is wrong with that and is there any other ways to make the insertion more efficient and fast in python?
By the way, the neo4j server reads data from mysql dynamically in real time, so that I can keep both databases' data synchronous.
Your original syntax uses a client command, which exists only in applications such as the browser and the Cypher shell; these commands are not part of Cypher itself. The final code you posted it indeed the correct way to do this: passing the parameters along with the Cypher query string as a second argument.