v1.4.0-preview20200331

This commit is contained in:
28810
2020-03-31 07:46:58 +08:00
parent f3593a321f
commit efedc894bf
23 changed files with 41 additions and 40 deletions

View File

@ -306,7 +306,7 @@ a.data_precision,
a.data_scale,
a.char_used,
case when a.nullable = 'N' then 0 else 1 end,
nvl((select 1 from user_sequences where upper(sequence_name)=upper(a.table_name||'_seq_'||a.column_name)), 0),
nvl((select 1 from user_sequences where upper(sequence_name)=upper(a.table_name||'_seq_'||a.column_name) and rownum < 2), 0),
b.comments
from all_tab_cols a
left join all_col_comments b on b.owner = a.owner and b.table_name = a.table_name and b.column_name = a.column_name