Django Shell Create, remove, sort print

Source: Internet
Author: User

models.py

From django.db import modelsclass person (models. Model): Name=models. Charfield (max_length=30) age=models. Integerfield () def __unicode__ (self): return self.name


./manage.py Shell

Person.objects.order_by ("id")

[<person:lanny>, <person:mxl>, <person:wang>, <person:zhang>, <person:zhao>, < Person:li>]


#切片打印出列表

Person.objects.order_by ("id") [: 1][<person:lanny>]person.objects.order_by ("id") [: 2][<person:lanny>, <person:mxl>]


#倒序排列

Person.objects.order_by ("-id") [: 2][<person:li>, <person:zhao>]person.objects.all () [<person:lanny , <person:mxl>, <person:wang>, <person:zhang>, <person:zhao>, <person:li>]


Create, query

Person.objects.create (name=lanny,age=23) Person.objects.get (name= "Lanny")


This article is from the "Lannyma" blog, make sure to keep this source http://lannyma.blog.51cto.com/4544390/1736104

Django Shell Create, remove, sort print

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.