我刚刚下载了SQL Anywhere的开发人员版.如何获取我连接到的数据库中的表列表?对于特定的表,如何获取该表的元数据(列名,类型等)?
我已经多年没有使用SQL-Anywhere了,但是下面的语句应该可行
select c.column_name from systabcol c key join systab t on t.table_id=c.table_id where t.table_name='tablename'
这直接来自早先的问题
select * from systable // lists all tables select * from syscolumn // lists all tables columns