我想创建一个数据库,其中有一个存储在表中的表名列表。现在借助此列表,我可以访问其他表。
前任 :-
Table name :- table_list (2 column i.e. table_name,table_id)
table_list attributes
authentication 1
basic_info 2
contact 3
我可以使用 select 语句直接访问这些表,但我想使用 table_list 表访问它们,最好使用 select 语句。
我试过了
select * from (select table_name as x from table_list where id=2) as y
但无法获得正确的输出。