mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-11-24 08:33:16 +08:00
Update gbase
This commit is contained in:
@@ -73,7 +73,7 @@ trim(a.tabname) as name,
|
||||
trim(b.comments) as Description
|
||||
from systables a
|
||||
left join syscomments b on b.tabname = a.tabname
|
||||
where a.tabtype in ('T') and not (a.tabname like 'sys%') AND a.tabname <>'dual' ";
|
||||
where a.tabtype in ('T') and a.tabid > 99";
|
||||
}
|
||||
}
|
||||
protected override string GetViewInfoListSql
|
||||
@@ -85,7 +85,7 @@ trim(a.tabname) as name,
|
||||
trim(b.comments) as Description
|
||||
from systables a
|
||||
left join syscomments b on b.tabname = a.tabname
|
||||
where a.tabtype in ('V') and not (a.tabname like 'sys%') AND a.tabname <>'dual' ";
|
||||
where a.tabtype in ('V') and a.tabid > 99 ";
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
Reference in New Issue
Block a user