asof join

I was reading http://code.kx.com/wiki/Reference/aj but cannotunderstand why left join is used? Why not do t1 lj xkey datesyminstead?********************************************************************************************************************************q)a:aj[c1…cn;t1;t2]The result is a table with records from the left join of t1 and t2.For each record in t1, the result has one record with the items in t1,andif there are matching records in t2, the items of the last (in roworder) matching record are appended to those of t1if there is no matching record in t2, the remaining columns are null********************************************************************************************************************************