- 修复 dm7 dbfirst SQL 中存在特殊字符的问题;

This commit is contained in:
28810
2020-06-30 11:29:00 +08:00
parent a4c049fcf2
commit a41da0dc95
4 changed files with 19 additions and 28 deletions

View File

@ -272,7 +272,7 @@ a.index_name,
case when c.descend = 'DESC' then 1 else 0 end,
case when a.uniqueness = 'UNIQUE' then 1 else 0 end
from all_indexes a,
all_ind_columns c
all_ind_columns c
where a.index_name = c.index_name
and a.table_owner = c.table_owner
and a.table_name = c.table_name