我搜索了互联网和这个网站,试图找到我的问题的答案。 Althoug我发现了类似的问题,建议的解决方案并没有解决我的问题。
所以在这里。我正在为类创建一个xml和关联的DTD,当我在Exchanger XML Editor中检查它时,我收到以下错误:“Ln 5 Col 37 - 在元素类型”publication“的声明中需要元素类型。”
下面是我的DTD和XML文档。
create or replace function count_null(
_r json
) returns integer as $$
select
count(1)::integer
from
(
select
row_to_json(json_each(_r)) as condensed_record
) as __base
where
condensed_record->>'value' is null;
$$ language sql immutable;
---------
select
count_null(row_to_json(my_table))
from
my_table;
感谢您查看我的排名。