WITH "jdbc:mysql://localhost:3306/test?user=root&password=Peculiarword1@" as url CALL apoc.load.jdbc(url,"orderinfo") YIELD row MERGE(order:Order {orderNumber:toInteger(row.orderNumber), customerNumber:toInteger(row.customerNumber), productCode:row.p...