Cakephp对多个不相关的数据库表进行分页

I want to paginate two database tables having same structure(eg SMS and MMS) which are not related to each other. I want to retrieve records from both the table with some condition (eg records having same date) . suppose there are (5 SMS and 10 MMS) as a result set. How will i paginate both tables and display it in a single instance using cakephp paginate function ?

I will suggest why don't you use single table for both if they are having same table structure. And with the help of flag or something you can differentiate SMS & MMS?

By this cakephp automatically handle all default functionality (like pagination , sorting etc..) & it will be easier for you.

I hope this helps you :)