Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
491 views
in Technique[技术] by (71.8m points)

sql - RasberryPi python error - sqlite3.OperationalError: near "(": syntax error - but not in Windows

I have a problem in python code with sqlite3.

This is my code.

conn = sqlite3.connect("test.db", isolation_level=None)
c = conn.cursor()
c.execute("WITH T AS (
    SELECT dense_rank() over(partition by code order by win desc, profit desc, ma asc) as rank, * 
    FROM ENV_ANALYZE WHERE LOSE = 0
    )
    SELECT code, name, ma, percent, cutLength, profit, win, lose FROM T where rank = 1")

In windows, It works!! There is no problem.

So,I copied this code to RasberryPi. But It occurs error like this

Traceback (most recent call last):
  File "/home/pi/python/test.py", line 27, in <module>
    SELECT code, name, ma, percent, cutLength, profit, win, lose FROM T where rank = 1")
sqlite3.OperationalError: near "(": syntax error

So I fixed like this for a test, It works in RasberryPi anyway. Removed dense_rank option.

c.execute("WITH T AS (
    SELECT 1 as rank, * 
    FROM ENV_ANALYZE WHERE LOSE = 0
    )
SELECT code, name, ma, percent, cutLength, profit, win, lose FROM T where rank = 1")

But I need that dense_rank option. So I need the first code and I want to Run in RasberryPi.

Do you have any idea about this?

question from:https://stackoverflow.com/questions/66066025/rasberrypi-python-error-sqlite3-operationalerror-near-syntax-error-but

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...