我有一个表id1,id2,type。type是包含另一个表名称的枚举值。我想join使用的表名来执行type。例如:
switch($type)
case 'table1':
join table1;
break;
case 'table2':
join table2;
我该如何实现?
相关分类