Sybase Describe对应sql

来源:互联网 发布:挂号网软件 编辑:程序博客网 时间:2024/06/05 20:14
select isnull(c.name, 'NULL') ,t.name  ,c.length from syscolumns c, systypes t, sysxtypes xwhere c.id = object_id('syscolumns')and c.usertype *= t.usertypeand c.xtype *= x.xtid;
原创粉丝点击