There's a bit of explaining to go with this answer -- the actual query you're after is down the bottom.
This is an instance of selecting not only the max/min-field-per-group, but also the other fields corresponding to it.
The canonical way to do this is by LEFT JOIN-ing the table to itself.
For example, to pick the entire row corresponding to the most recent connection from CONNECTIONS, you'd do:
SELECT c.userid, c.tzid as latestTZ, c.dateconn as latestConn
FROM CONNECTIONS c
LEFT JOIN CONNECTIONS c2 ON c.userid=c2.userid AND c.dateconn<c2.dateconn
WHERE c2.dateconn IS NULL
ORDER BY c.userid;
This essentially joins CONNECTIONS to itself on userid, and forms every possible pair of connection dates within that userid where c.dateconn<c2.dateconn. If there is no row in c2 that has a greater date than c, then you've picked the largest (ie most recent) date.
The JOIN ensures that you also pick the rest of the corresponding row from the table.
With this in mind, this is how we'd select the first connection date and label for every user (with NULL if they've never connected. If you don't want that behaviour (ie only show users who have connected) then you can ignore the USERS table entirely).
SELECT u.id,c.dateconn as firstConnection,TZ.label AS firstTZ
FROM USERS u
LEFT JOIN CONNECTIONS c ON u.id=c.userid
LEFT JOIN CONNECTIONS c2 ON c.userid=c2.userid AND c.dateconn > c2.dateconn
LEFT JOIN TZ ON c.tzid=TZ.id
WHERE c2.dateconn IS NULL;
To select the latest is the same, except you reverse the > to a <:
SELECT u.id,c.dateconn as latestConnection,TZ.label AS latestTZ
FROM USERS u
LEFT JOIN CONNECTIONS c ON u.id=c.userid
LEFT JOIN CONNECTIONS c2 ON c.userid=c2.userid AND c.dateconn < c2.dateconn
LEFT JOIN TZ ON c.tzid=TZ.id
WHERE c2.dateconn IS NULL;
Your query is a little more complicated in that you want to select not just the min or the max, but both the min and the max.
Solution
I think you might be able to UNION the previous two queries, OR you could do it all in one foul hit by basically JOIN-ing the two queries together:
# MIN & MAX
SELECT u.id, c.dateconn as firstCon, TZ.label as firstTZ,
c3.dateconn as latestCon, TZ2.label as latestTZ
FROM USERS u
LEFT JOIN CONNECTIONS c ON u.id=c.userid
LEFT JOIN CONNECTIONS c2 ON c.userid=c2.userid AND c.dateconn > c2.dateconn
LEFT JOIN CONNECTIONS c3 ON c.userid=c3.userid AND c3.dateconn >= c.dateconn
LEFT JOIN CONNECTIONS c4 ON c3.userid=c4.userid AND c3.dateconn < c4.dateconn
LEFT JOIN TZ ON TZ.id=c.tzid
LEFT JOIN TZ TZ2 ON TZ2.id=c3.tzid
WHERE c2.dateconn IS NULL
AND c4.dateconn IS NULL
ORDER BY u.id;
The (c,c2) pair find the first connection date/timezone, and the (c3,c4) pair find the latest.
Also, the join to c3 doesn't actually need the c3.dateconn>=c.dateconn quantifier (all it needs is to join on userid), but it extra bit narrows down the rows we have to join on. This is because since we're looking for a latest (ie MAX) date in the (c3,c4) tables, and c contains the MIN date, we only need to look at rows for which the MAX date is >= the MIN date.