SQLite supports a syntax to create a view if it does not exist already: `CREATE VIEW IF NOT EXISTS`: https://www.sqlite.org/lang_createview.html . It would be nice if sqlparser were able to parse it.
SQLite supports a syntax to create a view if it does not exist already:
CREATE VIEW IF NOT EXISTS: https://www.sqlite.org/lang_createview.html .It would be nice if sqlparser were able to parse it.