|
select name,city,country from aa;
If this is the case, how to display it, the previous question is that I don’t know if it is name, city, country, these three items.
====================
Name, city, and country are in the name string
String[] name1=name.split(",");
such
name1[0] is name
name1[1] is city
name1[2] is country |
|