SELECT b.name as TableName,a.name as columnname
From syscolumns a
INNER JOIN sysobjects b ON a.id=b.id
where b.type='U'
AND a.name like 'store%'

相关文章:

  • 2021-07-02
  • 2022-12-23
  • 2022-12-23
  • 2021-08-30
  • 2021-12-01
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-03
  • 2022-03-01
  • 2022-01-11
相关资源
相似解决方案