Python SQLite3数据库日期与时间常见函数用法分析
本文实例讲述了PythonSQLite3数据库日期与时间常见函数。分享给大家供大家参考,具体如下:
importsqlite3 #con=sqlite3.connect('example.db') con=sqlite3.connect(":memory:") c=con.cursor() #Createtable c.execute('''CREATETABLEstocks (datetext,transtext,symboltext,qtyreal,pricereal)''') #Insertarowofdata c.execute("INSERTINTOstocksVALUES(?,?,?,?,?)",('2006-03-27','BUY','RHAT',100,60.14)) #Largerexamplethatinsertsmanyrecordsatatime purchases=[('2006-03-28','BUY','IBM',1000,45.00), ('2006-04-05','BUY','MSFT',1000,72.00), ('2006-04-06','SELL','IBM',500,53.00), ('2006-04-07','SELL','MSFT',500,74.00), ('2006-04-08','SELL','IBM',500,54.00), ('2006-04-09','SELL','MSFT',500,73.00), ('2006-04-10','SELL','MSFT',500,75.00), ('2006-04-12','SELL','IBM',500,55.00), ] c.executemany('INSERTINTOstocksVALUES(?,?,?,?,?)',purchases) #Save(commit)thechanges con.commit() #Dothisinstead t=('RHAT',) c.execute('SELECT*FROMstocksWHEREsymbol=?',t) #print(c.fetchone()) #forrowinc.execute('SELECT*FROMstocksORDERBYprice'): #print(row) #forrowinc.execute('SELECT*FROMstocksLIMIT5OFFSET0'): #print(row) forrowinc.execute('SELECT*FROMstocksLIMIT5OFFSET1'): print(row) #SelectTopN*From #==================================================================================== #SQLite日期&时间 #==================================================================================== print('='*30) print('SQLite日期&时间') print('='*30) #计算当前日期 c.execute("SELECTdate('now')") print(c.fetchone()) #计算当前月份的最后一天: c.execute("SELECTdate('now','startofmonth','+1month','-1day');") print(c.fetchone()) #计算给定UNIX时间戳1092941466的日期和时间: c.execute("SELECTdatetime(1092941466,'unixepoch');") print(c.fetchone()) #计算给定UNIX时间戳1092941466相对本地时区的日期和时间: c.execute("SELECTdatetime(1092941466,'unixepoch','localtime');") print(c.fetchone()) #计算当前的UNIX时间戳: c.execute("SELECTdatetime(1092941466,'unixepoch','localtime');") print(c.fetchone()) #计算美国"独立宣言"签署以来的天数: c.execute("SELECTjulianday('now')-julianday('1776-07-04');") print(c.fetchone()) #计算从2004年某一特定时刻以来的秒数: c.execute("SELECTstrftime('%s','now')-strftime('%s','2004-01-0102:34:56');") print(c.fetchone()) #计算当年10月的第一个星期二的日期: c.execute("SELECTdate('now','startofyear','+9months','weekday2');") print(c.fetchone()) #计算从UNIX纪元算起的以秒为单位的时间(类似strftime('%s','now'),不同的是这里有包括小数部分): c.execute("SELECT(julianday('now')-2440587.5)*86400.0;") print(c.fetchone()) #在UTC与本地时间值之间进行转换,当格式化日期时,使用utc或localtime修饰符,如下所示: c.execute("SELECTtime('12:00','localtime');") print(c.fetchone()) # c.execute("SELECTtime('12:00','utc');") print(c.fetchone()) con.close() #==================================================================================== #SQLite常用函数 #==================================================================================== print('='*30) print('SQLite常用函数') print('='*30) con=sqlite3.connect(":memory:") c=con.cursor() #Createtable c.execute('''CREATETABLECOMPANY (IDinteger,NAMEtext,AGEinteger,ADDRESStext,SALARYreal)''') #Largerexamplethatinsertsmanyrecordsatatime purchases=[(1,'Paul',32,'California',20000.0), (2,'Allen',25,'Texas',15000.0), (3,'Teddy',23,'Norway',20000.0), (4,'Mark',25,'Rich-Mond',65000.0), (5,'David',27,'Texas',85000.0), (6,'Kim',22,'South-Hall',45000.0), (7,'James',24,'Houston',10000.0)] c.executemany('INSERTINTOCOMPANYVALUES(?,?,?,?,?)',purchases) #Save(commit)thechanges con.commit() #返回数据库表最后n行记录 #先计算一个数据库表中的行数 c.execute("SELECTcount(*)FROMCOMPANY;") last=c.fetchone()[0] n=5 c.execute("SELECT*FROMCOMPANYLIMIT?OFFSET?;",(n,last-n)) forrowinc: print(row) #计算一个数据库表中的行数 c.execute("SELECTcount(*)FROMCOMPANY;") print(c.fetchone()) #选择某列的最大值 c.execute("SELECTmax(salary)FROMCOMPANY;") print(c.fetchone()) #选择某列的最小值 c.execute("SELECTmin(salary)FROMCOMPANY;") print(c.fetchone()) #计算某列的平均值 c.execute("SELECTavg(salary)FROMCOMPANY;") print(c.fetchone()) #为一个数值列计算总和 c.execute("SELECTsum(salary)FROMCOMPANY;") print(c.fetchone()) #返回一个介于-9223372036854775808和+9223372036854775807之间的伪随机整数 c.execute("SELECTrandom()ASRandom;") print(c.fetchone()) #返回数值参数的绝对值 c.execute("SELECTabs(5),abs(-15),abs(NULL),abs(0),abs('ABC');") print(c.fetchone()) #把字符串转换为大写字母 c.execute("SELECTupper(name)FROMCOMPANY;") print(c.fetchone()) #把字符串转换为小写字母 c.execute("SELECTlower(name)FROMCOMPANY;") print(c.fetchone()) #返回字符串的长度 c.execute("SELECTname,length(name)FROMCOMPANY;") print(c.fetchone()) #返回SQLite库的版本 c.execute("SELECTsqlite_version()AS'SQLiteVersion';") print(c.fetchone()) # c.execute("SELECTCURRENT_TIMESTAMP;") print(c.fetchone())
PS:这里再为大家推荐2款SQL工具,附带常用语句,供大家参考:
SQL在线压缩/格式化工具:
http://tools.jb51.net/code/sql_format_compress
在线SQL格式化/压缩工具:
http://tools.jb51.net/code/sql_fmt_yasuo
另:关于时间戳转换还可参考本站时间戳转换工具(附带各种常用编程语言时间戳操作):
Unix时间戳(timestamp)转换工具:
http://tools.jb51.net/code/unixtime
更多关于Python相关内容感兴趣的读者可查看本站专题:《Python操作SQLite数据库技巧总结》、《Python日期与时间操作技巧总结》、《Python常见数据库操作技巧汇总》、《Python数据结构与算法教程》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》、《Python入门与进阶经典教程》及《Python文件与目录操作技巧汇总》
希望本文所述对大家Python程序设计有所帮助。