Example schema:
CREATE VIRTUAL TABLE posts USING FTS5(title, body);
Select table names:
SELECT name FROM sqlite_master WHERE type='table';
Result:
posts posts_data posts_idx posts_content posts_docsize posts_config
How to fetch result only for virtual tables, without *_data, *_idx, *_content, *_docsize and *_config?