如果我在 ASA Sybase 数据库中使用获取列:
select * from sys.syscolumns where table_id='1';
然后我可以获得创建者、表名、列名、列类型(varchar、int、..)但没有列 ID 或表 ID 看不到。查询如何,我可以获得列
creator, tname, cname, table_id, coltype, nulls, width, is_primary_key, default_value, remarks
我的意思是,如何获得
select
t.creator, //i meaned schema name e.g public
t.table_name, //the name of table e.g products
t.table_id, //table's identifier
c.column_name, //the name of column, e.g price
c.column_type, //e.g varchar(255), integer, ..
c.nulls, //not null or nulls
c.width, //255 (varchar(255)), 4 (int(4))
c.default //default value, the "default" is keyword and gives an error
from sys.systab t, sys.systabcol c
where t.table_id = c.table_id