django中使用原生sql语句的方法步骤
作者:小寒韩 时间:2023-06-29 16:36:07
raw
# row方法:(掺杂着原生sql和orm来执行的操作)
res = CookBook.objects.raw('select id as nid from epos_cookbook where id>%s', params=[1, ])
print(res.columns) # ['nid']
print(type(res)) # <class 'django.db.models.query.RawQuerySet'>
# 在select里面查询到的数据orm里面的要一一对应
res = CookBook.objects.raw("select * from epos_cookbook")
print(res)
for i in res:
print(i.create_date)
print(i)
res = CookBook.objects.raw('select * from epos_cookbook where id>%s', params=[1, ])
# 后面可以加参数进来
print(res)
for i in res:
# print(i.create_date)
print(i)
extra
## select提供简单数据
# SELECT age, (age > 18) as is_adult FROM myapp_person;
Person.objects.all().extra(select={'is_adult': "age > 18"}) # 加在select后面
## where提供查询条件
# SELECT * FROM myapp_person WHERE first||last ILIKE 'jeffrey%';
Person.objects.all().extra(where=["first||last ILIKE 'jeffrey%'"]) # 加一个where条件
## table连接其它表
# SELECT * FROM myapp_book, myapp_person WHERE last = author_last
Book.objects.all().extra(table=['myapp_person'], where=['last = author_last']) # 加from后面
## params添参数
# !! 错误的方式 !!
first_name = 'Joe' # 如果first_name中有SQL特定字符就会出现漏洞
Person.objects.all().extra(where=["first = '%s'" % first_name])
# 正确方式
Person.objects.all().extra(where=["first = '%s'"], params=[first_name])
connection(类似pymysql)
from django.db import connection
cursor=connection.cursor()
# 如果需要配置数据库
# cursor=connection['default'].cursor()
cursor.execute('select * from app01_book')
ret=cursor.fetchall()
print(ret)
#((2, '小时光', Decimal('10.00'), 2), (3, '未来可期', Decimal('33.00'), 1), (4, '打破思维里的墙', Decimal('11.00'), 2), (5, '时光不散', Decimal('11.00'), 3))
注意:如果在sql语句中有用到除法(%),需要使用%%来转义,因为在str中%多用于格式化输出。
来源:https://blog.csdn.net/weixin_46237597/article/details/112177897
标签:django,原生sql语句
0
投稿
猜你喜欢
如何使用Python快速生成gif图
2021-08-24 18:38:43
文字适度阅读的宽度或者字数
2007-10-26 07:31:00
Python 树表查找(二叉排序树、平衡二叉树)
2021-01-27 03:06:20
Golang依赖注入工具digo的使用详解
2023-08-27 13:00:43
Element树形控件整合带图标的下拉菜单(tree+dropdown+input)
2023-07-02 16:45:35
Python命令行库click的具体使用
2023-07-05 02:51:16
解决windows上安装tensorflow时报错,“DLL load failed: 找不到指定的模块”的问题
2021-06-03 06:31:22
Python使用tkinter实现小时钟效果
2022-08-14 09:00:18
对python产生随机的二维数组实例详解
2022-10-29 14:13:28
详解Windows下PyCharm安装Numpy包及无法安装问题解决方案
2021-01-27 11:58:32
Python中空格的转义字符方式
2021-07-02 01:22:33
详解使用Selenium爬取豆瓣电影前100的爱情片相关信息
2021-12-04 10:52:23
python opencv 图像拼接的实现方法
2021-06-21 19:11:51
五个提升Python的执行效率的技巧分享
2021-01-07 09:52:45
Python2手动安装更新pip过程实例解析
2021-06-29 17:01:50
得到文本框选中的文字,动态插入文字的js代码
2024-05-03 15:31:03
MySQL 错误处理例子[译]
2024-01-25 09:25:10
PHP共享内存使用与信号控制实例分析
2023-06-25 00:19:05
使用bandit对目标python代码进行安全函数扫描的案例分析
2021-04-07 02:01:22
Python时间和字符串转换操作实例分析
2023-04-15 22:58:08