摘要: 查看当前db2实例中有那些数据库:
db2 list database directory
查看数据库中有那些表:
db2 connect to db_name user xxx using xxxx
db2 list tables
阅读全文
摘要: -- sqlserver
查询一个数据库中的所有表
select [id], [name] from [sysobjects] where [type] = ’u’
[type] = ’u’ 是用户表,[type] = ’s’是系统表
根据上个语句的查询结果然后再查询一个表中的所有字段
select [name] from [syscolumns] where [id] = 1637580872
阅读全文