Ho una query sqlite piuttosto lunga:
const char *sql_query = "SELECT statuses.word_id FROM lang1_words, statuses WHERE statuses.word_id = lang1_words.word_id ORDER BY lang1_words.word ASC";
Come posso spezzarlo in più righe per facilitarne la lettura? Se faccio quanto segue:
const char *sql_query = "SELECT word_id
FROM table1, table2
WHERE table2.word_id = table1.word_id
ORDER BY table1.word ASC";
Sto ricevendo un errore
C'è un modo per scrivere query su più righe?