PgSQL非常用函数及语法
# 获取指定日期前N个月最后一天(每月最后一天)
SELECT date_trunc('month', current_date) + INTERVAL '0 month - 1 day' AS last_day_of_month;
1
# 字符串分割
string_to_array(field,splitExp)
1
例:
select string_to_array('a,b,c', ',')
1
# 获取数组长度
函数返回指定的数组中指定维度的长度
array_length(array, dimension)
1
例:
SELECT array_length(ARRAY[0, 1, 2], 1);
1
最后更新时间: 2024/08/13, 16:59:16