so I'm using Zend DB select and the join() function to join two tables...
there are two columns in the joined tables that have the same name (say it's column "id") (and I'd like to keep it that way)
but then when I use Zend_Paginator::factory() on the object, the results would only have one "id" entry from one of the two tables...
how do I specify zend so that it'll return the id entry of one specific table over the other? ie. how do I choose which table to have the "id" value returned when there are multiple tables with the same column named "id" that are joined with each other