Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. select
  2. t1.Id, t2.Name, t2.Description, t1.MinValue, t1.MaxValue, t3.Symbol as Unit
  3. from TestTypeParameters as t1 join
  4. Parameters as t2 on t1.Parameter = t2.Id left join
  5. Units as t3 on t1.Unit = t3.Id
  6. where TestType = @TestType
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement