$user = Doctrine_Core::getTable('User')
->createQuery('u')
->innerJoin('u.Profile p')
->where('p.username = ?', 'jwage')
->fetchOne();
It looks quite different from SQL which I'm quite used to,especially what does the u
mean?
Can someone make it clear by a decent explanation?