all database objects are stored in sys.objects table. they can be classified as following type:
U ==> normal table
V ==> View
S ==> System table
P ==> Store Procedure
...

for example, if we 'd like to query all tables which are named with ds_in_*, we can write like this:
    select 
            object_id,name
    from 
            sys.objects
    where 
            type='U' 
            and name like 'ds_in_%'

相关文章:

  • 2022-01-31
  • 2022-02-02
  • 2022-12-23
  • 2022-01-26
  • 2021-10-20
  • 2021-09-22
  • 2022-12-23
  • 2018-05-31
猜你喜欢
  • 2021-12-26
  • 2022-02-26
  • 2021-08-22
  • 2022-12-23
  • 2022-02-19
相关资源
相似解决方案