python 获取 sqlite数据表num sum列 然后相加 怎么写? 另外sqlite怎么直接写

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 获取 sqlite数据表num sum列 然后相加 怎么写? 另外sqlite怎么直接写相关的知识,希望对你有一定的参考价值。

python 获取 sqlite数据表num sum列 然后相加 怎么写?
另外sqlite怎么直接写

这个直接用sql就完成了。select num+sum from xxxx
用python 的db2api接口执行select,将结果数组打印出来。
参考技术A 看自带的帮助文档

Python连接Sqlite数据库及Django获取接收Html数据

def sqlitetest(txt,footer):
    cx = sqlite3.connect("D:\Python-Test\StuProject\db.sqlite3")
    cu = cx.cursor()
    #sql = ‘‘‘insert into ‘comment_comment‘(txt,‘footer‘) values (\"%s\",\"%s\");‘‘‘%(pymysql.escape_string(txt),pymysql.escape_string(footer))#字符串插入字符串sql
    sql = ‘‘‘insert into ‘comment_comment‘(txt,‘footer‘) values (\"%s\",\"%s\");‘‘‘ % (txt, footer)  # 字符串插入字符串sql
    try:
        cu.execute(sql)
        cx.commit()
    except Exception as e:
        with open("D:\Python-Test\StuProject\dblog.txt",a+) as f:
            log = ‘‘‘执行sql发生错误:%s \n 输出:%s‘‘‘%(e,sql)
            #f.write(log)
        pass
    print(cu)

++++++++++++++++++++++++++++++++++++++++++++++++++++

cur_page = 1
def net163(request):
    global cur_page#处理报错local variable ‘cur_page1‘ referenced before assignment
    try:
        #cur_page = int(request.GET.get(‘cur_page‘, ‘1‘))#跳转页码
        if request.POST:
            cur_page = int(request.POST[num])
        elif request.GET:
            cur_page = int(request.GET[cur_page])
        else:
            print("数据传输有误")
    except ValueError:
        cur_page = 1
    pagination = Pagination.create_pagination(
            from_name=comment.models,
            model_name=comment,
            cur_page=cur_page,
            start_page_omit_symbol=...,
            end_page_omit_symbol=...,
            one_page_data_size=30,#每页显示数目
            show_page_item_len=10)#分页数目
    return render(request, Net163.html, {pagination: pagination})

 

以上是关于python 获取 sqlite数据表num sum列 然后相加 怎么写? 另外sqlite怎么直接写的主要内容,如果未能解决你的问题,请参考以下文章

Python连接Sqlite数据库及Django获取接收Html数据

python sqlite中通过字段名获取查询结果

android sqlite 已经插入到数据库的数据查不到

使用python在sqlite数据库上并发

Python 连接SQLite数据库文件

SQLite从Excel文件中导入数据