python database 日期_Python SQLite3数据库日期与时间常见函数用法分析

本文实例讲述了Python SQLite3数据库日期与时间常见函数。分享给大家供大家参考,具体如下:

import sqlite3

#con = sqlite3.connect('example.db')

con = sqlite3.connect(":memory:")

c = con.cursor()

# Create table

c.execute('''CREATE TABLE stocks

(date text, trans text, symbol text, qty real, price real)''')

# Insert a row of data

c.execute("INSERT INTO stocks VALUES (?,?,?,?,?)", ('2006-03-27','BUY','RHAT',100,60.14))

# Larger example that inserts many records at a time

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('INSERT INTO stocks VALUES (?,?,?,?,?)', purchases)

# Save (commit) the changes

con.commit()

# Do this instead

t = ('RHAT',)

c.execute('SELECT * FROM stocks WHERE symbol=?', t)

#print(c.fetchone())

#for row in c.execute('SELECT * FROM stocks ORDER BY price'):

# print(row)

#for row in c.execute('SELECT * FROM stocks LIMIT 5 OFFSET 0'):

# print(row)

for row in c.execute('SELECT * FROM stocks LIMIT 5 OFFSET 1'):

print(row)

#Select Top N * From

# ====================================================================================

# SQLite 日期 & 时间

# ====================================================================================

print('='*30)

print('SQLite 日期 & 时间')

print('='*30)

# 计算当前日期

c.execute("SELECT date('now')")

print(c.fetchone())

# 计算当前月份的最后一天:

c.execute("SELECT date('now','start of month','+1 month','-1 day');")

print(c.fetchone())

# 计算给定 UNIX 时间戳 1092941466 的日期和时间:

c.execute("SELECT datetime(1092941466, 'unixepoch');")

print(c.fetchone())

# 计算给定 UNIX 时间戳 1092941466 相对本地时区的日期和时间:

c.execute("SELECT datetime(1092941466, 'unixepoch', 'localtime');")

print(c.fetchone())

# 计算当前的 UNIX 时间戳:

c.execute("SELECT datetime(1092941466, 'unixepoch', 'localtime');")

print(c.fetchone())

# 计算美国"独立宣言"签署以来的天数:

c.execute("SELECT julianday('now') - julianday('1776-07-04');")

print(c.fetchone())

# 计算从 2004 年某一特定时刻以来的秒数:

c.execute("SELECT strftime('%s','now') - strftime('%s','2004-01-01 02:34:56');")

print(c.fetchone())

# 计算当年 10 月的第一个星期二的日期:

c.execute("SELECT date('now','start of year','+9 months','weekday 2');")

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值