如果我有一个SQL脚本,那么有一种方法可以通过提取所使用的列和引用到表中的表,如下所示:
脚本:
Select t1.first, t1.last, t2.car, t2.make, t2.year
from owners t1
left join cars t2
on t1.owner_id = t2.owner_id
Run Code Online (Sandbox Code Playgroud)
输出:
Table Column
owners first
owners last
owners owner_id
cars car
cars make
cars year
cars owner_id
Run Code Online (Sandbox Code Playgroud) 我是knockout.js的新手.几分钟后我读到了ko的标题特征.我无法理解ko真的是MVVVM吗?因为他们谈论的只是数据绑定和易用性.但我确信MVVM不仅仅是数据绑定吗?