Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a SQLite table with below columns:

link VARCHAR(100)
status VARCHAR(10)
date_posted DATE
date_removed DATE

please help me to create SQLite query for:

(link not in DB)
or (status = “NO”)
or ( (status = “YES”) and ((date_removed – date_posted) > 1 day))

Here's a start:

cursor.execute("
    SELECT link FROM My_Table
    WHERE link!=? OR status=? OR
    ((status=?) and ((date_removed – date_posted) > 1))",
    [new_link,'NO','YES', ]
)
share|improve this question
Why are you selecting link if it doesn't exist? Wouldn't it be much simpler to select link based off of the date difference? – CBredlow Aug 23 '12 at 13:24
4  
The title is inappropriate for this site, can you pick a better (ie more descriptive) one? – Rob W Aug 23 '12 at 13:24
The date comparison can be done with julianday, viz and (julianday(date_removed) - julianday(date_posted)) > 1 – StuartLC Aug 23 '12 at 13:46

1 Answer

This would be the correct way:

String query = "SELECT lin, status, date_removed, date_posted FROM databaseName .tableName;

share|improve this answer
Not sure you understood the question. – Andrew Barber Aug 23 '12 at 13:31
2  
the string is not closed and databaseName .tableName should not include a space – Theodros Zelleke Aug 23 '12 at 13:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.