mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-22 02:32:50 +08:00
解决all_tab_cols无法查询data_precisionBUG
This commit is contained in:
parent
3278065a04
commit
8fae7e350b
@ -356,7 +356,7 @@ 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) and rownum < 2), 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,
|
b.comments,
|
||||||
a.data_default
|
a.data_default
|
||||||
from all_tab_cols a
|
from all_tab_columns 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
|
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
|
||||||
where {(ignoreCase ? "lower(a.owner)" : "a.owner")} in ({databaseIn}) and {loc8}
|
where {(ignoreCase ? "lower(a.owner)" : "a.owner")} in ({databaseIn}) and {loc8}
|
||||||
";
|
";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user