--查询sql 查询表列名
Select Name FROM SysColumns Where id=Object_Id('Tab')
--查询sql数据库表列名称
select name from syscolumns where id=(select max(id) from sysobjects where xtype='u' and name='Tab')
--查询oracle数据库表列名称
select * from user_tab_cols where table_name = 'Tab'