我需要将许多查询和函数从Progress / 4GL转换为SQL。
你能帮助我开始吗?这是我需要转换的4GL语句之一。
for each Part where (
Part.NonStock = false AND
Part.InActive = false AND
Part.QtyBearing = true) no-lock ,
each PartWhse outer-join where (
Part.Company = PartWhse.Company and
Part.PartNum = PartWhse.PartNum) no-lock ,
each PartCost outer-join where (
Part.Company = PartCost.Company and
Part.PartNum = PartCost.PartNum) no-lock .
你能解释4GL位并给出一些关于SQL会是什么样子的提示。
我有一些SQL知识,但没有4GL知识。
答案 0 :(得分:2)
select *
from part p
left outer join partwhse w on p.Company = w.Company
left outer join partCost c on p.Company = c.Company and p.PartNum = c.PartNum
where p.NonStock = false
and p.Inactive = false
and p.QtyBearing = true;
无锁位只会添加(无锁定)表声明,这不是一个好习惯,除非真的需要,否则我会避免。