• django数据库基本操作-增删改查(tip)-基本


    补充:django外键保存

                    #外键保存
                    form_data = Form_Data()
                    project, is_created = Project_Name.objects.get_or_create(name=select_text)
                    form_data.project = project

    1、插入数据

    1 Python代码
    2 >>> from books.models import Publisher  
    3 >>> p1 = Publisher(name='Apress', address='2855 Telegraph Avenue',  
    4 ...     city='Berkeley', state_province='CA', country='U.S.A.',  
    5 ...     website='http://www.apress.com/')  
    6 >>> p1.save()  
    1 >>> from books.models import Publisher  
    2 >>> p1 = Publisher(name='Apress', address='2855 Telegraph Avenue',  
    3 ...     city='Berkeley', state_province='CA', country='U.S.A.',  
    4 ...     website='http://www.apress.com/')  
    5 >>> p1.save()  

    2、查询

    1 Python代码
    2 >>> Publisher.objects.all()  
    3 [<Publisher: Apress>, <Publisher: O'Reilly>]  
    1 [python] view plain copy
    2 >>> Publisher.objects.all()  
    3 [<Publisher: Apress>, <Publisher: O'Reilly>]  

    获取单个对象:

    1 Python代码
    2 >>> Publisher.objects.get(name="Apress")  
    3 <Publisher: Apress>  
    1 [python] view plain copy
    2 >>> Publisher.objects.get(name="Apress")  
    3 <Publisher: Apress>  

    如果结果是多个对象或者没有返回结果则会抛出异常

    3、条件

    筛选:

    1 Python代码
    2 >>> Publisher.objects.filter(name='Apress')  
    3 [<Publisher: Apress>] 
    1 >>> Publisher.objects.filter(name='Apress')  
    2 [<Publisher: Apress>]  
    1 Python代码
    2 >>> Publisher.objects.filter(name__contains="press")  
    3 [<Publisher: Apress>]  
    1 [python] view plain copy
    2 >>> Publisher.objects.filter(name__contains="press")  
    3 [<Publisher: Apress>] 

    __contains部分会被Django翻译成LIKE语句

    排序:

    1 Python代码
    2 >>> Publisher.objects.order_by("name")  
    3 [<Publisher: Apress>, <Publisher: O'Reilly>
    1 python] view plain copy
    2 >>> Publisher.objects.order_by("name")  
    3 [<Publisher: Apress>, <Publisher: O'Reilly>]  

    相当于 order by name asc

    1 Python代码
    2 >>> Publisher.objects.order_by("-name")  
    1 [python] view plain copy
    2 >>> Publisher.objects.order_by("-name") 

    加个负号相当于 order by name desc


    限制返回数据:

    1 Python代码
    2 >>> Publisher.objects.order_by('name')[0]  
    3 <Publisher: Apress>  
    1 [python] view plain copy
    2 >>> Publisher.objects.order_by('name')[0]  
    3 <Publisher: Apress>

    相当于 limit 1

    1 Python代码
    2 >>> Publisher.objects.order_by('name')[0:2]  
    1 [python] view plain copy
    2 >>> Publisher.objects.order_by('name')[0:2]  

    相当于 OFFSET 0 LIMIT 2

    4、更新

    1 Python代码
    2 >>> Publisher.objects.filter(id=52).update(name='Apress Publishing')  
    1 [python] view plain copy
    2 >>> Publisher.objects.filter(id=52).update(name='Apress Publishing')  
    1 Python代码
    2 >>> p = Publisher.objects.get(name='Apress') #先查询  
    3 >>> p.name = 'Apress Publishing' #更新  
    4 >>> p.save()  #保存  
    1 [python] view plain copy
    2 >>> p = Publisher.objects.get(name='Apress') #先查询  
    3 >>> p.name = 'Apress Publishing' #更新  
    4 >>> p.save()  #保存  

    5、删除

    1 Python代码
    2 >>> p = Publisher.objects.get(name="O'Reilly")  
    3 >>> p.delete()  
    1 [python] view plain copy
    2 >>> p = Publisher.objects.get(name="O'Reilly")  
    3 >>> p.delete()  
    1 Python代码
    2 >>> Publisher.objects.filter(country='USA').delete() 
    1 [python] view plain copy
    2 >>> Publisher.objects.filter(country='USA').delete()  
  • 相关阅读:
    Spring Security简单的登陆验证授权
    汽车之家汽车品牌Logo信息抓取 DotnetSpider实战[三]
    汽车之家店铺商品详情数据抓取 DotnetSpider实战[二]
    如何解决 MySQL报错:ERROR 1045 (28000)
    linux三剑客grep|sed|awk实践
    VMware中Linux启动时***Host SMBus controller not enabled的解决方法
    selenium初探:WebDriverException解决方法探索(以Chrome浏览器|IE浏览器|Edge浏览器为例)
    Windows10 64位 Python2.7 Matplotlib安装
    关于 水平制表符 Horizontal Tab (TAB)
    leetcode每日解题思路 221 Maximal Square
  • 原文地址:https://www.cnblogs.com/zhaoyingjie/p/6438864.html
Copyright © 2020-2023  润新知