Skip to content

Instantly share code, notes, and snippets.

@ilopez
Created January 30, 2015 17:25
Show Gist options
  • Save ilopez/cf34e10c23b785bf29d7 to your computer and use it in GitHub Desktop.
Save ilopez/cf34e10c23b785bf29d7 to your computer and use it in GitHub Desktop.
Quick Quieries
select
part.num,
part.description,
SUM(tag.qty) as qoh,
SUM(tag.qtycommitted) as qtycmtd
from part
join tag on tag.partid = part.id
where part.activeflag = 0
and part.id > 0
group by 1,2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment