Eu tenho uma consulta sqlite bastante longa:
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";
Como posso quebrá-lo em várias linhas para facilitar a leitura? Se eu fizer o seguinte:
const char *sql_query = "SELECT word_id
FROM table1, table2
WHERE table2.word_id = table1.word_id
ORDER BY table1.word ASC";
Estou recebendo um erro.
Existe uma maneira de escrever consultas em várias linhas?