informix可不可以查询数据库中有哪些表?解决办法
informix可不可以查询数据库中有哪些表?
informix中可不可以实现如oracle中的:
select table_name from user_tables;
------解决方案--------------------
select * from systables;
------解决方案--------------------
select tabname from systabnames
where
dbsname = '库名 '
informix中可不可以实现如oracle中的:
select table_name from user_tables;
------解决方案--------------------
select * from systables;
------解决方案--------------------
select tabname from systabnames
where
dbsname = '库名 '