pub fn extract_insert_columns(sql: &str) -> Option<Vec<String>>
Extract the comma-separated column list from an INSERT INTO tbl (col1, col2, ...) VALUES … statement. Returns None if the statement doesn’t have a column list.
INSERT INTO tbl (col1, col2, ...) VALUES …
None