I am using SQLite database, where I need some help
select Value from SdVarTbl where Name='DateCreated.Sd'
This query returns a single row and single columns. Which is a varchar type in database.
And another query
select ComputerName, LastCheckIn from ClientB
which returns
My query:
I want to show another column say "Difference", which will print the date difference between and first query and each value in the second query.
HOW to achieve that. I have tried to use datetime, strftime function, but couldn't succeed till now.