当前位置: 代码迷 >> Informix >> informix有关问题
  详细解决方案

informix有关问题

热度:8480   发布时间:2013-02-26 00:00:00.0
informix问题
现在已知表名,我想通过sql语句查询该表的字段名

------解决方案--------------------------------------------------------
select colname from syscolumns where tabid = (select tabid from systables
where tabname = '表名')
  相关解决方案