日期:2014-05-20  浏览次数:20579 次

sql describe问题
我有几个表 table1,里面有N个字段 a1, a2, a3
select * from table1
但是现在由于业务需要
不能写select *
我想知道我怎么获取table1里面含有哪些字段,然后再自己拼凑

describe table table1这个是DB2命令行的
但是我SQL中怎么写 谢谢

------解决方案--------------------
oracle方式
select column_name from all_tab_columns where table_name = upper( ' ');

sql server:

select name from SysColumns where id = Object_Id('TableName')
------解决方案--------------------
楼主用db2吗