mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-08-01 10:10:16 +08:00
Update Oracle GetTableInfo
This commit is contained in:
parent
4258b31137
commit
934136ee08
@ -28,7 +28,10 @@ namespace SqlSugar
|
||||
{
|
||||
get
|
||||
{
|
||||
return @"SELECT table_name name from user_tables where
|
||||
return @"SELECT table_name name ,
|
||||
(select COMMENTS from user_tab_comments where t.table_name=table_name ) as Description
|
||||
|
||||
from user_tables t where
|
||||
table_name!='HELP'
|
||||
AND table_name NOT LIKE '%$%'
|
||||
AND table_name NOT LIKE 'LOGMNRC_%'
|
||||
|
Loading…
Reference in New Issue
Block a user