# Do a simple join.  Order it so we know the results will match the test

select test2.fullname, test.age
        from test2,test
        where test2.user = test.user
	order by test2.fullname
\p\g

