使用python3 / Django 1.7执行原始SQL

时间:2015-01-11 13:07:28

标签: python django rawsql

我正在使用simple_history,因为我需要模型的历史数据。 我有一个名为po_staff的模型,它有一个名为pool_historicalpo_staff的“历史”模型。 现在我想得到一个基于pool_historicalpo_staff的查询集,其中包含每个员工的最后一条记录(我试图让它变得尽可能简单,因为真正的查询要复杂得多)。 我目前正在使用SQLLite

历史模型包含以下数据:

ID staff_nr valid      staff_firstname staff_lastname
1  111      01/01/2014 Firstname1      Lastname1
2  3        01/01/2014 Firstname2      Lastname2
2  3        01/04/2014 Firstname2      Lastname2_new #Employee has changed his Lastname

此代码工作正常(有序alpabetical):

qs = po_staff.history.raw ('SELECT * FROM pool_historicalpo_staff '
     'WHERE clientID_id is %s and companyID_id is %s '
     'GROUP BY id '
     'ORDER BY staff_name, staff_surname ',
     [client_id, company_id])

我必须使用“id”进行分组,因为可以从用户更改staff_nr(但它仍然是同一名员工)。

问题1: 用户可以在alpabetical和staff_id之间选择结果的顺序

为了实现这一点,我在查询中添加了第3个参数:

if order == 1:
    order_by = "staff_name, staff_surname"
else:
    order_by = "staff_nr"
qs = po_staff.history.raw ('SELECT * FROM pool_historicalpo_staff '
     'WHERE clientID_id is %s and companyID_id is %s '
     'GROUP BY id '
     'ORDER BY %s ',
     [client_id, company_id, order_by])

查询有效但不是按字母顺序排列,而是按“id”排序。

问题2: 还必须为其他模型执行查询。只是模型和order_by会有所不同。 我不想为每个模型编写几乎相同的查询,因此我试图使其更加灵活:

model      = ....  # instance of current model
order_by   = ....  # gets the choosen order for current model, p.e. "staff_name, staff_surname"
model_name = ....  # gets the model name, p.e. "pool_historicalpo_staff"

qs = model.history.raw ('SELECT * FROM %s '
     'WHERE clientID_id is %s and companyID_id is %s '
     'GROUP BY id '
     'ORDER BY %s ',
     [model_name, client_id, company_id, order_by])

执行此查询时出错:

Request Method:     GET
Request URL:    http://127.0.0.1:8000/framework/21/?view=kanban
Django Version:     1.7
Exception Type:     OperationalError
Exception Value:    near "?": syntax error
Exception Location:     c:\python34\lib\site-packages\django\db\backends\sqlite3\base.py in     
                        execute, line 485
Python Executable:  c:\python34\python.EXE
Python Version:     3.4.0

我希望我能清楚地解释一切。 我是django的新手,这是我的第一个原始SQL

非常感谢你的帮助!

1 个答案:

答案 0 :(得分:0)

这似乎与Django: MySQL syntax error when passing parameters to raw SQL query

类似

简答:您只能将参数传递给查询。为了支持替换部分SQL语法(如表名),您需要在两次传递中构建查询,仅在第二次传递中将实际参数传递给查询。

希望这有帮助。