主頁(yè) > 知識(shí)庫(kù) > python3 sqlite3限制條件查詢(xún)的操作

python3 sqlite3限制條件查詢(xún)的操作

熱門(mén)標(biāo)簽:西藏智能外呼系統(tǒng)五星服務(wù) 400電話(huà)申請(qǐng)服務(wù)商選什么 平頂山外呼系統(tǒng)免費(fèi) 工廠(chǎng)智能電話(huà)機(jī)器人 在哪里辦理400電話(huà)號(hào)碼 原裝電話(huà)機(jī)器人 江蘇客服外呼系統(tǒng)廠(chǎng)家 千陽(yáng)自動(dòng)外呼系統(tǒng) 清遠(yuǎn)360地圖標(biāo)注方法

請(qǐng)注意10,11,24行的代碼,是本條博客的精華,邏輯并不難,就是有些小語(yǔ)法問(wèn)題比較糾結(jié),記錄一下。

import json 
import sqlite3
import re
import argparse
def Get(db_file):
  
    conn = sqlite3.connect(db_file)
    cur = conn.cursor()
    print("5555555")
    value1=(60)# this is must be ()
    cur.execute("select * from exception where AGV_ID=(%s)" %(value1))
    #cursor.execute("insert into exception values('%s', '%s','%s' ) " %(start_time ,ID ,infomation))
 
    result= cur.fetchall()
    print("result:",result)
    for i in result:
       print(i)  
    print("******************************888")
  
def get_agv_id(db_file):
  try:
    conn = sqlite3.connect(db_file)
    cur = conn.cursor()
    cur.execute("select * from exception where AGV_ID=51")
    #print( cur.fetchall())
    result= cur.fetchall()
    for i in result:
       print(i)
  except sqlite3.Error,e:
    print(e)
    
if __name__ == '__main__': 
  parser = argparse.ArgumentParser(description='check the information of db')
  #parser.add_argument('-h', '--help', help='Statistics for abnormal information')
  parser.add_argument('-n', '--name', help=' the db of name ')
  args = vars(parser.parse_args())
  db_name = args['name']
  print("db_name:",db_name)
  conn = sqlite3.connect('db_name')
  cursor = conn.cursor()
  Get('fitkits.db')
  get_agv_id('fitkits.db')  
  
  conn.commit()
  conn.close() 
  print('DONE!')
  print("666")

補(bǔ)充:python + sqlite3 基本操作

連接數(shù)據(jù)庫(kù)

import sqlite3 
# 連接數(shù)據(jù)庫(kù)(如果不存在則創(chuàng)建)
conn = sqlite3.connect('test.db')
print("Opened database successfully")
 
# 創(chuàng)建游標(biāo)
cursor = conn.cursor() 
...
 
# 關(guān)閉游標(biāo)
cursor.close()
# 提交事物
conn.commit()
# 關(guān)閉連接
conn.close()

創(chuàng)建表

...
# 創(chuàng)建游標(biāo)
cursor = conn.cursor()
 
# 創(chuàng)建表
sql = 'CREATE TABLE Student(id integer PRIMARY KEY autoincrement, Name varchar(30), Age integer)'
cursor.execute(sql)
 
# 提交事物
conn.commit()
...

插入數(shù)據(jù)

...
# 創(chuàng)建游標(biāo)
cursor = conn.cursor()
 
# 插入數(shù)據(jù)
sql = "INSERT INTO Student(Name, Age) VALUES(\'love', 22)"
cursor.execute(sql)
 
# 插入數(shù)據(jù) 2
data = ('love2', 2221) # or ['love2', 2221]
sql = "INSERT INTO Student(Name, Age) VALUES(?, ?)"
cursor.execute(sql, data)
 
# 提交事物
conn.commit()
...

查詢(xún)數(shù)據(jù)

...
# 創(chuàng)建游標(biāo)
cursor = conn.cursor()
 
# 查詢(xún)數(shù)據(jù)
sql = "select * from Student"
values = cursor.execute(sql)
for i in values:
 print(i)
 
# 查詢(xún)數(shù)據(jù) 2
sql = "select * from Student where id=?"
values = cursor.execute(sql, (1,))
for i in values:
 print('id:', i[0])
 print('name:', i[1])
 print('age:', i[2])
 
# 提交事物
conn.commit()
...

其他操作

自增字段起始位置

# 設(shè)置起始值為1
update sqlite_sequence SET seq = 0 where name = '表名';
# 設(shè)置全部表起始值為默認(rèn)值
delete from sqlite_sequence where name='TableName'; --注意表名區(qū)分大小寫(xiě)

以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教。

您可能感興趣的文章:
  • python 操作sqlite數(shù)據(jù)庫(kù)的方法
  • python sqlite3 判斷cursor的結(jié)果是否為空的案例
  • Python3+SQLAlchemy+Sqlite3實(shí)現(xiàn)ORM教程
  • Python 操作SQLite數(shù)據(jù)庫(kù)的示例
  • python數(shù)據(jù)庫(kù)如何連接SQLite詳解

標(biāo)簽:股票 白城 日照 隨州 天水 錦州 西安 安慶

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《python3 sqlite3限制條件查詢(xún)的操作》,本文關(guān)鍵詞  python3,sqlite3,限制,條件,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《python3 sqlite3限制條件查詢(xún)的操作》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于python3 sqlite3限制條件查詢(xún)的操作的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章