1.使用extra方法
解釋:結果集修改器,一種提供額外查詢引數的機制
說明:依賴model模型
使用方式:
用在where後:
book.objects.filter(publisher_id="1").extra(where=["title='python學習1'"])
用在select後
book.objects.filter(publisher_id="1").extra(select=)
2.使用raw方法
解釋:執行原始sql並返回模型
說明:依賴model多用於查詢
使用方式:12
3book = book.objects.raw("select * from hello_book") #返回模型例項
for item in book:
print(item.title)
3.執行自定義sql
解釋:利用游標執行
匯入:from django.db import connection
說明:不依賴model
使用方式:
from django.db import connection
cursor = connection.cursor()
# 插入
cursor.execute("insert into hello_author(name) values('xiaol')")
# 更新
cursor.execute("update hello_author set name='xiaol' where id=1")
# 刪除
cursor.execute("delete from hello_author where name='xiaol'")
# 查詢
cursor.execute("select * from hello_author")
# 返回一行
raw = cursor.fetchone()
print(raw)
# 返回所有
# cursor.fetchall()
以上就是本文的全部內容
源生Ajax的實現
源生ajax ajax的用途 用來實現網頁的一些效果,比如 區域性重新整理,表單驗證,互動式網頁等 實現ajax主要靠xmlhttprequest類。主意 這裡xmlhttprequest不能相容ie6版本瀏覽器以及以下的產品,需要用objectxactive來實現。xmlhttprequest的主...
Django入門 Django執行流程
附 安裝python django略 瀏覽器 urls.py views.py templates html 中可以傳入4個引數,其中name引數可以在模板裡面用 也可以在view redirect的時候使用。有個便利,就是你url更改了,但是name不用改,其他用url name的地方也不用改了 ...
django 執行過程
目前使用的主要開發語言還是python,有部分會用到 開發,順便看了一下 web介面開發與自動化測試基於python語言 裡面有django的一些簡單介紹,必要可以基於這個來開發個簡單的web介面。首先乙個是搞明白django的訪問邏輯次序。以下是根據書上的學習和實踐,拷貝自網路 1 服務端響應ur...