Good day. There are two tables
1 act id | name | data 1 | Ivan | 2015-01-01 2 | Petr | 2015-01-03 2 serv id | name | data 1 | Serge | 2015-01-02 2 | John | 2015-01-04
How can I make a sample to be distributed according to dates, but from two tables. so that data from data=2015-01-01
, then data=2015-01-02
, then data=2015-01-03
, data=2015-01-04
, and another question - whether the tables should have the same cell names ? If mySQl is not possible, then tell me how you can process this data through php
so that it would turn out as I requested.