我们经常有这种需求:
用sql来查询以及写入数据到数据库,Django当然也提供了这种方式,那就是通过raw方法:
sql = "select * from blog_blog where caption like '%python%'" blogs = Blog.objects.raw(sql)
我们经常有这种需求:
用sql来查询以及写入数据到数据库,Django当然也提供了这种方式,那就是通过raw方法:
sql = "select * from blog_blog where caption like '%python%'" blogs = Blog.objects.raw(sql)