sql查询所有表以及表名的模糊查询
--1、查看所有表名:
select name from sysobjects where type='U'
--2、查找包含用户的表名,可通过以下SQL语句实现,
Select * From sysobjects Where name like '%20160222%' and crdate>'2016-02-22 16:19:31'
--1、查看所有表名:
select name from sysobjects where type='U'
--2、查找包含用户的表名,可通过以下SQL语句实现,
Select * From sysobjects Where name like '%20160222%' and crdate>'2016-02-22 16:19:31'