Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ex-ug-import-from-mysql.md #1360

Merged
merged 1 commit into from
May 11, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf`
table:"player"
user:"test"
password:"123456"
sentence:"select playerid, age, name from basketball.player order by playerid;"
sentence:"select playerid, age, name from player order by playerid;"

# Specify the column names in the player table in fields, and their corresponding values are specified as properties in the Nebula Graph.
# The sequence of fields and nebula.fields must correspond to each other.
Expand Down Expand Up @@ -224,7 +224,7 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf`
table:"team"
user:"test"
password:"123456"
sentence:"select teamid, name from basketball.team order by teamid;"
sentence:"select teamid, name from team order by teamid;"

fields: [name]
nebula.fields: [name]
Expand Down Expand Up @@ -259,7 +259,7 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf`
table:"follow"
user:"test"
password:"123456"
sentence:"select src_player,dst_player,degree from basketball.follow order by src_player;"
sentence:"select src_player,dst_player,degree from follow order by src_player;"

# Specify the column names in the follow table in fields, and their corresponding values are specified as properties in the Nebula Graph.
# The sequence of fields and nebula.fields must correspond to each other.
Expand Down Expand Up @@ -301,7 +301,7 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf`
table:"serve"
user:"test"
password:"123456"
sentence:"select playerid,teamid,start_year,end_year from basketball.serve order by playerid;"
sentence:"select playerid,teamid,start_year,end_year from serve order by playerid;"
fields: [start_year,end_year]
nebula.fields: [start_year,end_year]
source: {
Expand Down