django写原生sql语句

缺乏、安全感 2023-10-06 09:08 45阅读 0赞

执行自定义SQL语言:

复制代码

  1. from django.db import connection
  2. cursor=connection.cursor()
  3. # 插入操作
  4. cursor.execute("insert into hello_author(name) values('传说中的申小五')")
  5. # 更新操作
  6. cursor.execute("update hello_author set name='abc' where name='bcd'")
  7. # 删除操作
  8. cursor.execute("delete from hello_author where name='abc'")
  9. # 查询操作
  10. cursor.execute("select * from hello_author")
  11. raw=cursor.fetchone() # 返回结果行游标直读向前,读取一条
  12. cursor.fetchall() # 读取所有

来源:https://www.cnblogs.com/one-tom/p/12053002.html

发表评论

表情:
评论列表 (有 0 条评论,45人围观)

还没有评论,来说两句吧...

相关阅读