为提高效率,提问时请提供以下信息,问题描述清晰可优先响应。 【DM版本】:7 【操作系统】: 【CPU】: 【问题描述】达梦查所有表all_tables,这里面的表怎么区分哪个是带有空间字段的表?
GIS 空间类型字段?
select owner, table_name, column_name, data_type from all_tab_cols where data_type in ( select concat(‘CLASS’, id) from sysobjects where name like ‘ST_%’ ESCAPE ‘’)
GIS 空间类型字段?
select owner, table_name, column_name, data_type from all_tab_cols
where data_type in (
select concat(‘CLASS’, id) from sysobjects where name like ‘ST_%’ ESCAPE ‘’)