--格林威治日期時間,比北京時間晚8小時
select datetime('now');
--格林威治日期
select date('now');
--本地時間
select time('now','localtime');
--日期時間格式化
select strftime('%y-%m-%d %h:%m:%s','now','localtime');
--加1小時
select datetime(date('now'),'+1 hour');
--加1小時30分鐘
select datetime(date('now'),'+1 hour','+30 minute');
--當月最後一天
select date('now','localtime','start of month','+1 month','-1 day');
--當月1號
select date('now','localtime','start of month');
--下月1號
select date('now','localtime','start of month','+1 month');
--擷取字串(第2個引數為從1算起的開始位置,第3個位置為擷取長度):結果為123
select substr('abc123',4,3);
--計算長度,結果為6
select length('abc123');
--返回小寫、大寫,結果為abc,abc
select lower('abc'),upper('abc');
--四捨五入保留2位小數
select round(cast(1 as double)/cast(3 as double),2);
--case when用法
select
case
when cast(strftime('%h','now','localtime') as int) >= 6 and cast(strftime('%h','now','localtime') as int) <=12 then '上午'
when cast(strftime('%h','now','localtime') as int) >12 and cast(strftime('%h','now','localtime') as int) <=18 then '下午'
when cast(strftime('%h','now','localtime') as int) >18 and cast(strftime('%h','now','localtime') as int) <=23 then '晚上'
else '凌晨' end;
SQLITE3的一些函式的用法
insert語法格式如下 insert into table name n 語法注釋 into 乙個可選的關鍵字,可以將它用在 insert 和目標表之間。table name 將要接收資料的表或 table 變數的名稱。column list 要在其中插入資料的一列或多列的列表。必須用圓括號將co...
一些SQLite技巧
sqlite自增id自段 使用方法為integer primary key autoincrement 如 create table 21andy id integer primary key autoincrement,21andy varchar 100 not null,date date 注...
一些SQLite技巧
sqlite自增id自段 使用方法為integer primary key autoincrement 如 create table 21andy id integer primary key autoincrement,21andy varchar 100 notnull,date date 注意...