1987jy
1987jy
>>> a = sqlparse.parse('select c from b.dual t')[0] >>> print a.get_name() t >>> print a.get_real_name() c >>> print a.get_parent_name() None >>> >>> a = sqlparse.parse('select c,d from b.dual t')[0] >>>...
https://github.com/antlr/grammars-v4/blob/e07dbbf3445d31da61af5f54f04df78ea40ab9f8/sql/plsql/PlSqlParser.g4#L5594C7-L5594C18 index_name is a object in statement like create_index. but in cursor_loop_param, index_name should be regarded as a variable. i suggest index_name (in cursor_loop_param )should be define as variable_index_name which...