In the satellite table there are duplicate satellites from different sources.
╔═════════╦══════════╦═══════╦═════════╦════════════╦══════════╦════════╗
║ _sat_id ║   name   ║ norad ║ intldes ║ un_country ║ operator ║ source ║
╠═════════╬══════════╬═══════╬═════════╬════════════╬══════════╬════════╣
║       1 ║ ISS      ║ 25544 ║ 98067A  ║ null       ║ Frank    ║ s_t    ║
║       2 ║ Int stat ║ 25544 ║ 98067A  ║ null       ║ null     ║ ucs    ║
║       3 ║ zarya    ║     0 ║ 98067A  ║ US         ║ John     ║ nasa   ║
║       4 ║ iss      ║ 25544 ║ 98067A  ║ Sovjet     ║ John     ║ celes  ║
║       5 ║ ISS      ║ 25544 ║ null    ║ Russia     ║ null     ║ other  ║
╚═════════╩══════════╩═══════╩═════════╩════════════╩══════════╩════════╝
How do I merge(not group concat) this in MySQL following a priority list? For example priority list:
- s_t 
- ucs 
- celes 
- nasa - so the merged row will contain all 1.s_t data, all nulls are 2.ucs data, if there are still nulls then 3.celes data etc. 
I tried using the following MySQL query:
SELECT 
group_concat(`sources`) as sources,
max(`_sat_id`) as _sat_id,
max(`off_name`) as off_name,
max(`norad`) as norad,
max(`intldes`) as intldes,
max(`un_reg_country`) as un_reg_country,
max(`operator_country`) as operator_country,
max(`operator`) as operator,
max(`contractor_country`) as contractor_country,
max(`contractor`) as contractor,
max(`users`) as users,
max(`contact_info`) as contact_info,
max(`operational_status`) as operational_status,
max(`application`) as application,
max(`period`) as period,
max(`has_propulsion`) as has_propulsion,
max(`power`) as power,
max(`dry_mass`) as dry_mass,
max(`orbit_class`) as orbit_class,
max(`orbit_type`) as orbit_type,
max(`expected_life_time`) as expected_life_time,
max(`decay_date`) as decay_date,
max(`longitude`) as longitude,
max(`perigee`) as perigee,
max(`apogee`) as apogee,
max(`eccentricity`) as eccentricity,
max(`inclination`) as inclination,
max(`launch_date`) as launch_date,
max(`launch_mass`) as launch_mass,
max(`launch_site`) as launch_site,
max(`launch_vehic`) as launch_vehic,
max(`description`) as description,
group_concat(`comments`) as comments
    FROM satellite
    GROUP BY intldes
But with this I don't know which row gets the priority.
I also tried doing it with Java, but this takes over 40 seconds per 500 rows...
Thx in advance...
 
     
     
     
    