Complete newb and total novice, so apologies in advance...
Say I have a table in SQL with three columns: name; datein; dateout. I have 2 records in the table.
For each individual record, I want to echo the dates from 'datein' to the day before 'dateout'.
So for example...
Record 1 in the db is JohnDoe, 2017-03-27, 2017-03-30
Record 2 in the db is JaneDoe, 2017-04-10, 2017-04-12
I want to echo the results:
2017-03-27
2017-03-28
2017-03-29
2017-04-10
2017-04-11
Searched but couldn't quite find something that does this... Hope someone can help :)