我有一个名为A的表,其中记录包含表B的一些列名。
table A
Id, columnName
1 col1
2 col2
3 col3
table B
ID, col1, col2, col3, col4, col5
我想根据表A的值选择B列。
示例
Select col1, col2, col3
from B
如果表A中的记录号3被删除,则sql语句将为。
Select col1, col2
from B