小编Ant*_* F.的帖子

Regex.h for windows

我在Windows上使用Code :: Blocks在C中编写一个dll.我需要包含regex.h.获得regex.h的最简单方法是什么?

c regex windows

10
推荐指数
1
解决办法
2万
查看次数

PostgreSQL:查找有关用户定义类型的信息

有关用户定义类型的信息存储在哪里?

是否有一些表包含有关用户定义的复合类型的字段,其名称等的信息?

postgresql user-defined-types system-tables

5
推荐指数
2
解决办法
6402
查看次数

PostgreSQL选择复合元素的数组

我有一个在复合类型上定义的表:

create type footype as (  
a double precision,
b double precision
);  

create table footable as (  
x integer,  
y footype []);
Run Code Online (Sandbox Code Playgroud)

如何在表中包含的复合元素的单个字段上使用select语句?

在此先感谢,
安东尼奥

arrays postgresql composite

4
推荐指数
2
解决办法
5588
查看次数