select 8 % 3;
select mod(8, 3);
select round(10.2);
select ceil(10.2);
select floor(10.2);
select * from test1;
select octet_length(col1), char_length(col1), octet_length(col2), char_length(col2) from test1;
insert into test1 (col3) values ('aaaaaaaaaaaaaa')
select char_length(col3) from test1;
select position('a' in 'abcd');
select substring('abcdefg' from 3 for 4 );
select split_part('abc@def@ghij', '@', 2);
select now();
select now()::timestamp with time zone;
select now()::timestamp without time zone;
select now()::date;
select now()::time without time zone;
select now()::time with time zone;
select now(), now() + interval '1 day';
select now(), now() + interval '1D';
-- 時間精度默認為6
select now(), now()::timestamp(1);
-- 時間/日期類型操作符
select date '2017-07-29' + interval '1 days';
select date '2017-07-29' - interval '1 hour';
select 100 * interval '1 second';
select interval '1 hour' / double precision '3';
-- 時間日期常用函數(shù)
select current_date, current_time, current_timestamp;
select extract(year from now());
select extract(month from now()), extract(day from now());
select extract(hour from now()), extract(minute from now()), extract(second from now());
select extract(week from now());
select extract(doy from now());
-- 布爾值 boolean
-- TRUE、t、true、y积锅、yes、on寸齐、1
-- FALSE屯曹、f、false宁赤、n舀透、no、off决左、0
-- 網(wǎng)絡地址類型
select '192.168.1.100'::cidr;
select '192.168.1.100'::inet;
select '192.168.1.100/16'::inet;
-- cidr類型對IP地址和子網(wǎng)掩碼合法性進行檢查愕够,而inet不會
-- macaddr、macaddr8存儲MAC地址
select host(cidr '192.168.1.0/24');
select host(cidr '192.168.1.0/24');
select netmask(cidr '192.168.1.0/24');
-- 數(shù)組類型
create table array_test(
id serial,
array_i integer[],
array_t text[]
);
insert into array_test(array_i, array_t)
values (
'{1,2,3}',
'{a,b,c}'
);
select * from array_test;
insert into array_test(array_i, array_t)
values (
array[4,5,6],
array['d','e','f']
);
select array_i, array_i[1] from array_test;
select array_append(array[1,2,3], 4);
select array[1,2,3] || 4;
select array_remove(array[1,2,2,4], 2);
update array_test set array_i[1] = 9;
select * from array_test;
select array_ndims(array[[1,2,3],[4,5,6]]);
select array_length(array[1,2,3],1);
select array_position(array[1,2,3,4], 3);
select array_replace(array[1,2,5,9], 5, 10);
select array_to_string(array[1,2,null,3], ',', '10');
筆記
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
- 文/潘曉璐 我一進店門缩搅,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人触幼,你說我怎么就攤上這事硼瓣。” “怎么了?”我有些...
- 文/不壞的土叔 我叫張陵堂鲤,是天一觀的道長亿傅。 經常有香客問我,道長瘟栖,這世上最難降的妖魔是什么葵擎? 我笑而不...
- 正文 為了忘掉前任,我火速辦了婚禮半哟,結果婚禮上酬滤,老公的妹妹穿的比我還像新娘。我一直安慰自己寓涨,他們只是感情好盯串,可當我...
- 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著戒良,像睡著了一般体捏。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上糯崎,一...
- 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼黄锤!你這毒婦竟也來了搪缨?” 一聲冷哼從身側響起,我...
- 正文 年R本政府宣布为严,位于F島的核電站敛熬,受9級特大地震影響,放射性物質發(fā)生泄漏第股。R本人自食惡果不足惜荸型,卻給世界環(huán)境...
- 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望炸茧。 院中可真熱鬧瑞妇,春花似錦、人聲如沸梭冠。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽控漠。三九已至蔓倍,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間盐捷,已是汗流浹背偶翅。 一陣腳步聲響...
推薦閱讀更多精彩內容
- 電子版: Section A:使用OneNote記筆記 以課件(PPT)形式為例: 首先打開OneNote阎曹,以不斷...
- 新用戶往往對于印象筆記的筆記形娇、筆記本锰霜、筆記本組感到糾結。從了解到的情況來看桐早,這種糾結主要是由于日常使用Window...
- 我是小青琴,今天是我參加“每天一篇文章”連續(xù)寫作的第139天陶衅。大學生讀書創(chuàng)業(yè)屡立,方法論+實踐,希望每一篇都讓你有所收...