如何得到sybase ase 12.5中表的结构定义?我要在程序中获取
谢谢
[解决办法]
在sysobjects系统表中获取!
[解决办法]
看看sp_help存储过程就可以了
[解决办法]
一般情况下也就只是看下表的各列属性,我在代码中就发下面这条SQL干的。
select name, length, type, prec, scale, isnullable from syscolumns where id = object_id( 'tablename ')
若实在想看主键索引,那只好将
syscolumns,sysindexes,sysindexkeys 三张表连接起来看了。