Advertisement
Guest User

Untitled

a guest
Dec 11th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. use ObjectViews
  2. Go
  3.  
  4. SELECT TOP 200
  5. FO.KeyOffering
  6. ,FO.KeyInstn
  7. ,Instn.InstnName
  8. ,Country.CountryName
  9. ,FO.OfferingAnnouncementDate
  10. ,FO.OfferingCompletionDate
  11. ,FO.OfferingTerminationDate
  12. ,LOT.OfferingType
  13. ,(case FO.IPO when 1 then 'yes' else 'no' end) as IPO
  14. ,FO.PrivatePlacement
  15. ,FO.Restricted144a
  16. ,Fo.ShelfOffering
  17. ,FO.AmountOffered
  18. FROM ObjectViews..FndgOffering_E FO
  19. LEFT JOIN ObjectViews..Instn Instn
  20. ON FO.KeyInstn = Instn.KeyInstn
  21. LEFT JOIN ObjectViews..Country Country
  22. ON Country.KeyCountry = Instn.Country
  23. LEFT JOIN ObjectViews..LookupOfferingType LOT
  24. ON FO.KeyOfferingType = LOT.KeyOfferingType
  25. WHERE (FO.KeyOffering = '668286')
  26. ORDER BY FO.UpdDate ASC
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement