Guys, how are you? I have two tables
table 1
columns
id
date
text
Ex:
1, 12/09/2019, test 1
3, 10/10/2019, test 2
4, 12/11/2019, test 3
5, 12/12/2019, test 4
6, 12/13/2019, test 5
And I have a table 2 with the same fields. However in table 2 the data field is Today () and has only one row.
I need to look in table 1 for today’s date and return the text. How do I do that?
Return test 5 in table 2
1, today (), ‘test 5’





