Sqlite3 時間型別及操作

2021-06-08 15:38:08 字數 3388 閱讀 4535

例1.select datetime('now');

結果:2006-10-1712:55:54

例2.select datetime('2006-10-17');

結果:2006-10-1712:00:00

例3.select datetime('2006-10-17 00:20:00',' 1 hour','-12 minute');

結果:2006-10-1701:08:00

例4.select date('2006-10-17',' 1 day',' 1 year');

結果:2007-10-18

例5.select datetime('now','start of year');

結果:2006-01-0100:00:00

例6.select datetime('now','start of month');

結果:2006-10-0100:00:00

例7.select datetime('now','start of day');

結果:2006-10-1700:00:00

例8.select datetime('now',' 10 hour','start of day',' 10 hour');

結果:2006-10-1710:00:00

例9.select datetime('now','localtime');

結果:2006-10-1721:21:47

例10.

select datetime('now',' 8 hour');

結果:2006-10-1721:24:45

例3中的 1 hour和-12 minute表示可以在基本時間上(datetime函式的第乙個引數)增加或減少一定時間。

例5中的start of year表示一年開始的時間。

從例8可以看出,儘管第2個引數加上了10個小時,但是卻被第3個引數「start of day」把時間歸零到00:00:00,隨後的第4個引數在00:00:00

的基礎上把時間增加了10個小時變成了10:00:00。

例9把格林威治時區轉換成本地時區。

例10把格林威治時區轉換成東八區。

strftime()函式可以把yyyy-mm-dd hh:mm:ss格式的日期字串轉換成其它形式的字串。

strftime()的語法是strftime(格式, 日期/時間, 修正符, 修正符, ...)

它可以用以下的符號對日期和時間進行格式化:

%d 月份, 01-31

%f 小數形式的秒,ss.sss

%h 小時, 00-23

%j 算出某一天是該年的第幾天,001-366

%m 月份,00-12

%m 分鐘, 00-59

%s 從2023年1月1日到現在的秒數

%s 秒, 00-59

%w 星期, 0-6 (0是星期天)

%w 算出某一天屬於該年的第幾周, 01-53

%y 年, yyyy

%% 百分號

strftime()的用法舉例如下:

例11.

select strftime('%y.%m.%d %h:%m:%s','now','localtime');

結果:2006.10.1721:41:09

例11用圓點作為日期的分隔附,並把時間轉換為當地的時區的時間。

更多關於sqlite日期時間函式方面的內容,可以參考chris newman寫的《sqlite》(isbn:0-672-32685-x)中的《working with datesand

times》一文。

具體運用為:

建表語句:

create table snw12(sn varchar(30) not null,errorcode interger not null,strtime timestamp default (datetime('now','localtime')),flag interger not null,pid varchar(12) not null,primary key(sn,errorcode));

1、sqlite> select sn,time from snw12 where datetime(time)

6 08:25:30') anddatetime(time)>datetime('2012-08-16 08:25:30','-20 minute');

w123|2012-08-1608:20:30

說明:顯示符合時間差為20分鐘的sn及time.

c# 讀取值:

string timestr = "select sn,datetime(time) from " + t_name + " where errorcode=0;";

sqlitecommand timecmd = new sqlitecommand(timestr, conn);

timecmd.executenonquery();

while (read.read())

2、sqlite> delete from snw12 where sn='w123' and datetime(time)

8-16 08:25:30') anddatetime(time)>datetime('2012-08-16 08:25:30','-20 minute

');sqlite> select *from snw12;

w123|0|2012-08-1608:25:30|a000135|1

w124|1000010|2012-08-1609:25:30|a000135|1

w124|0|2012-08-1610:25:30|a000135|1

說明:刪除某行資料格式為delete from 表名 where ....

c#刪除資料用函式executenonquery();

3、sqlite> select count(*) from snw12 where sn='sw123' and datetime(time)

e('2012-08-1608:20:30') and datetime(time)>datetime(,2012-08-16 08:20:30','-

20minute');

說明:顯示受影響的行數

c#讀取count的值:

object timecount = 0;

string countstr = "select count(1) from " + t_name + " where sn='" + sn + "' and datetime(time)datetime('" + time + "','-20 minute');";

sqlitecommand countcmd = new sqlitecommand(countstr, conn);

timecount = countcmd.executescalar();

使用sqlite3 模組操作sqlite3資料庫

python內建了sqlite3模組,可以操作流行的嵌入式資料庫sqlite3。如果看了我前面的使用 pymysql 操作mysql資料庫這篇文章就更簡單了。因為它們都遵循pep 249,所以操作方法幾乎相同。廢話就不多說了,直接看 吧。都差不多,首先匯入模組,然後建立連線,然後獲取游標物件,之後利...

sqlite3基本操作

sqlite3對很多通過的sql語句都支援,像select,update,insert,delete等等都支援地很好,只要懂sql語句就可以用sqlite3。1,下面是幾個比較重要的api函式 開啟資料庫,如果不存在則建立乙個 int sqlite3 open const char sqlite3 ...

sqlite3基本操作

1.sqlite3 db.sqlite3 進入名為db.sqlite3的資料庫 2.sqlite tables 檢視所有表 3 sqlite schema 表名 檢視表結構 4 sqlite database 檢視目前掛載的資料庫 5 sqlite quit 退出資料庫 6 root wzz sql...