当前位置:   article > 正文

flask_orm 之数据库查询:order,limit,offset和切片_flask orm limit

flask orm limit

惯例,先将重复的程序再抄一遍:

from sqlalchemy import create_engine
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy import Column,Integer,String
from sqlalchemy.orm import sessionmaker


# 连接数据库
# 地址
HOSTNAME = '127.0.0.1'

# 数据库  几栋
DATABASE = 'selectClass'

# 端口 门牌号
PORT = 3306

# 用户名  密码
USERNAME = 'root'
PASSWORD = 'root'

DB_URL = 'mysql+pymysql://{}:{}@{}:{}/{}'.format(USERNAME,PASSWORD,HOSTNAME,PORT,DATABASE)
engine = create_engine(DB_URL)

# 都要继承这个函数生成的基类
Base = declarative_base(engine)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25

这段代码除了数据库变化了外,其余不需要进行改动

定义class,配置数据表:

class Article(Base):
    __tablename__ = 'article1'
    id = Column(Integer,primary_key=True,autoincrement=True)
    title = Column(String(50))

	# 倒序的
    # __mapper_args__ = {
    #     'order_by': -id
    # }

    def __str__(self):
        return 'Article(title:%s)' % self.title

Base.metadata.create_all()
Session = sessionmaker(bind=engine)
session = Session()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

代码方式批量生成数据:

for i in range(10):
    article = Article(title='title%s' %i)
    session.add(article)

session.commit()

article = session.query(Article).all()
# 显示所有
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

按照id排序并显示

article = session.query(Article).order_by(Article.id).all()
  • 1

倒序:

article = session.query(Article).order_by(Article.id.desc()).all()
  • 1

也可以使用 -Article.id来实现倒序

article = session.query(Article).order_by(-Article.id).all()
  • 1

limit :限制查看个数

article = session.query(Article).order_by(-Article.id).limit(3).all()
  • 1

从第2个查看:(注:这里的2是指id为3,偏移量为2,在1的基础上偏移2就是3)

article = session.query(Article).order_by(Article.id).limit(3).offset(2).all()
  • 1

如果排序为倒序,则查看的是倒数第三个

article = session.query(Article).order_by(-Article.id).limit(3).offset(2).all()
  • 1

切片操作:

article = session.query(Article).all()[2:5]
  • 1

注:切片操作要在所有其他操作完成后进行

遍历所有可迭代元素代码:(因为查询到的article是一个可迭代元素,需要遍历)

for item in article:
    print(item)
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/521919
推荐阅读
相关标签
  

闽ICP备14008679号