【Django】Django使用原生SQL的方法


  1. 使用extra:

    models.Book.objects.filter(publisher__name='人民出版社').extra(where=['price>50'])
    models.Book.objects.filter(publisher__name='人民出版社', price__gt=50)
     
    models.Book.objects.extra(select={'count': 'select count(*) from hello_Book'})
    
  2. 使用raw:

    Book.objects.raw('select * from hello_Book')  # 返回模型實例
    
  3. 執行自定義SQL語言:

    from django.db import connection
    
    cursor=connection.cursor()
    
    # 插入操作
    cursor.execute("insert into hello_author(name) values('錢鍾書')")
    
    # 更新操作
    cursor.execute("update hello_author set name='abc' where name='bcd'")
    
    # 刪除操作
    cursor.execute("delete from hello_author where name='abc'")
    
    # 查詢操作
    cursor.execute("select * from hello_author")
    
    raw=cursor.fetchone()  # 返回結果行游標直讀向前,讀取一條
    cursor.fetchall()  # 讀取所有
    


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM