Jua*_*oto 10 python sql parsing sql-parser
我们需要一个SQL解析或分解Python的库.我们希望能够输入SQL文本查询,然后将查询部分作为结果返回.它不需要花哨或任何东西,但我们希望避免自己进行解析.理想情况下,我们可以做以下事情:
the_query = "select something from some_table where blah = 'thing' limit 15"
query_parts = the_library.parse(the_query)
print query_parts.limit().val()
>>> '15'
Run Code Online (Sandbox Code Playgroud)
这也是:
the_query = "select something from some_table where blah = 'thing'"
query_parts = the_library.parse(the_query)
print query_parts.limit().val()
>>> None
Run Code Online (Sandbox Code Playgroud)
任何人都可以给我们任何指示吗?如果功能更有限,那也没关系.
非常感谢!
从他们的主页公然被盗:
>>> # Parsing
>>> res = sqlparse.parse('select * from "someschema"."mytable" where id = 1')
>>> res
<<< (<Statement 'select...' at 0x9ad08ec>,)
>>> stmt = res[0]
>>> stmt.to_unicode() # converting it back to unicode
<<< u'select * from "someschema"."mytable" where id = 1'
>>> # This is how the internal representation looks like:
>>> stmt.tokens
<<<
(<DML 'select' at 0x9b63c34>,
<Whitespace ' ' at 0x9b63e8c>,
<Operator '*' at 0x9b63e64>,
<Whitespace ' ' at 0x9b63c5c>,
<Keyword 'from' at 0x9b63c84>,
<Whitespace ' ' at 0x9b63cd4>,
<Identifier '"somes...' at 0x9b5c62c>,
<Whitespace ' ' at 0x9b63f04>,
<Where 'where ...' at 0x9b5caac>)
>>>
Run Code Online (Sandbox Code Playgroud)