Advertisement
Guest User

Lee

a guest
May 6th, 2009
628
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. SELECT ?product (?qty * ?cost AS ?total)
  2. {
  3. ?product :cost ?cost ; :quantity ?qty
  4. }
  5.  
  6. vs.
  7.  
  8. SELECT ?product ?total
  9. {
  10. ?product :cost ?cost ; :quantity ?qty
  11. LET { ?total := ?cost * ?qty }
  12. }
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement