当前位置:网站首页>【Flask】Flask-SQLAlchemy的增删改查(CRUD)操作
【Flask】Flask-SQLAlchemy的增删改查(CRUD)操作
2022-08-03 05:10:00 【중둑【上瘾】】
增加(Create)
1.创建 Python 对象的一个实例
2.把添加实例告诉会话
3.提交会话
from models import User
user1 = User('admin', '[email protected]')
db.session.add(user1)
db.session.commit()
修改(Update)
1.查询要修改的对象的实例
2.把修改实例属性的操作告诉会话
3.提交会话
from models import User
user1 = User.query.filter(User.username == 'admin').first()
user1.username = 'admin_new'
db.session.commit()
删除(Delete)
1.查询要删除的对象的实例
2.把删除操作告诉会话
3.提交会话
from models import User
user1 = User.query.filter(User.username == 'admin').first()
db.session.delete(user1)
db.session.commit()
检索(Retrieve)
参照官网给出的示例进行总结,假定数据库中有如下数据:
id | username | |
---|---|---|
1 | admin | [email protected] |
2 | peter | [email protected] |
3 | guest | [email protected] |
通过用户名查询用户,查询一个不存在的用户名返回 None。
>>> peter = User.query.filter_by(username='peter').first()
>>> peter.id
1
>>> peter.email
u'[email protected]'
>>> missing = User.query.filter_by(username='missing').first()
>>> missing is None
True
查询email属性以@example.com结尾的用户,.all()将返回一个对象组成的列表
>>> User.query.filter(User.email.endswith('@example.com')).all() # 返回一个列表
[<User u'admin'>, <User u'guest'>]
按某种规则对用户排序
>>> User.query.order_by(User.username)
[<User u'admin'>, <User u'guest'>, <User u'peter'>]
限制返回用户的数量。
>>> User.query.limit(1).all()
[<User u'admin'>]
用主键查询用户。
>>> User.query.get(1)
<User u'admin'>
边栏推荐
- How to prepare for the test interface test data
- Newifi路由器第三方固件玩机教程,这个路由比你想的更强大以及智能_Newifi y1刷机_smzdm
- Response 重写设置返回值
- Harmony OS ets ArkUI 】 【 】 the development basic page layout and data connection
- Odps temporary query can write SQL, turned out to a named?
- Interface test framework combat (1) | Requests and interface request construction
- 力扣561. 数组拆分
- HarmonyOS应用开发培训第二次作业
- Peptides mediated PEG DSPE of phospholipids, targeted functional materials - PEG - RGD/TAT/NGR/APRPG
- 13.< tag-动态规划和回文字串>lt.647. 回文子串 + lt.516.最长回文子序列
猜你喜欢
Harmony OS ets ArkUI 】 【 】 the development basic page layout and data connection
breed Web刷机升级详细教材修正编译器固件说明_itkeji.top
Exception(异常) 和 Error(错误)区别解析
Kotlin-Flow common encapsulation class: the use of StateFlow
MySql数据库
接口测试框架实战(四)| 搞定 Schema 断言
高效率科研神器——小软件、大能量
typescript42-readonly修饰符
【Biotin Azide|cas:908007-17-0】Price_Manufacturer
快速上手 Mockito 单元测试框架
随机推荐
Apache DolphinScheduler版本2.0.5分布式集群的安装
Unity2D horizontal board game tutorial 6 - enemy AI and attack animation
如何不耍流氓的做运维之-SHELL脚本
HarmonyOS应用开发第一次培训
用户密码加密工具
JS学习笔记(三)
Harmony OS Date ano UI 】 【 】 the basic operation
ss-4.2 多个eureka集群案例
Exception (abnormal) and Error (error) difference analysis
Interface test Mock combat (2) | Combined with jq to complete batch manual Mock
高效率科研神器——小软件、大能量
1069 微博转发抽奖 (20 分)(C语言)
closures in js
Djiango第三次培训
1. 两数之和
2022/08/02 Study Notes (day22) Multithreading
Super handy drawing tool is recommended
How to prepare for the test interface test data
mysql 存储过程 动态参数 查询执行结果
业务表解析-余额系统