i simply have two fields. dtStartTime and dtStartDate.
I want to do a query now which returns one combined field dtStart using SQLite
I have tried
SELECT (dtStartDate+dtStartTime) as dtStart1, from …
but it returns wrong values…
Thank you, shorty
PS: Dates are stored as unixepoch
1 Answer