oracle和sql统计某个表字段数量

–oracle中统计某张表字段总数:
select count(*) from user_tab_columns where table_name=upper(‘GXZC_ZZZC_SB_EN’)

–SQL统计统计某张字段总数:
select count(*) from syscolumns where id = object_id(‘GXZC_ZZZC_SB_EN’)

oracle和sql统计某个表字段数量

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-06
  • 2022-01-13
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-10-27
  • 2022-12-23
  • 2022-01-03
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案