python解析sql文件提取表名_【python】提取sql语句中的表名
前言最近刚学python,写一个小工具时需要提取sql语句中表名,查询一番后找到一篇文章挺不错的,mark一下PS.那篇文章是转载的,且没有标注转载自哪里正文import ply.lex as lex, redef extract_table_name_from_sql(sql_str):# remove the /* */ commentsq = re.sub(r"/\*[^*]*\*+(?:[...