mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-18 17:48:11 +08:00
Update Oracle GetTableInfo
This commit is contained in:
@@ -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_%'
|
||||
|
Reference in New Issue
Block a user