#;21> (display "hey\nthere\n\n") hey there #;22> (display (q:find-note "this,that" "the other")) "SELECT distinct n.id, n.title\n FROM notes n\n LEFT JOIN notes_tags nt ON nt.note_id = n.id\n LEFT JOIN tags t ON nt.tag_id = t.id\n JOIN fulltext ft ON ft.docid = n.id\n WHERE 1=1""AND t.name in (this,that)\n""AND ft.fulltext MATCH 'the other'\n"";"#;23>