怎样返回数据库中用户表的表单名
select *? from ?
---------------------------------------------------------------
select name from sysobjects where xtype='U'
---------------------------------------------------------------
select name from sysobjects where xtype = 'u' and status >=0