Advertisement
Guest User

Untitled

a guest
Aug 6th, 2015
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. id | claimantID | agentID | claimantContactIndex | agentContactIndex | claimantContactID | agentContactID
  2. --------------------------------
  3. 1 | 1001 | 2001 | 2 | 0 | 0 | 0
  4. 2 | 1002 | NULL | 0 | NULL | 0 | 0
  5.  
  6. id | name | address | phone | email
  7. --------------------------------
  8. 1001 | Widgets Inc. | 123 W. Main | 5550000 | widgets@here.com
  9. 1002 | Thingies LLC. | 456 W. Main | 5551111 | thingies@here.com
  10.  
  11. id | name | address | phone | email
  12. --------------------------------
  13. 2001 | Simon Bros. | 789 W. Main | 5552222 | simon@here.com
  14.  
  15. id | claimantID | agentID | fn | ln | phone | email
  16. --------------------------------
  17. 3001 | 1001 | NULL | John | Doe | 5553333 | john@here.com
  18. 3002 | 1001 | NULL | Fred | Flynn | 5554444 | fred@here.com
  19. 3003 | 1001 | NULL | Mike | Brown | 55555555 | mike@here.com
  20. 3004 | 1001 | NULL | Susan | Pierce | 5556666 | susan@here.com
  21. 3005 | NULL | 2001 | Jeff | Bridges | 5557777 | jeff@here.com
  22. 3006 | NULL | 2001 | Karry | Sinclair | 5558888 | Karry@here.com
  23. 3007 | NULL | 2001 | Steve | Green | 5559999 | steve@here.com
  24. 3008 | NULL | 2001 | Peter | White | 5550001 | peter@here.com
  25.  
  26. SELECT
  27. ROW_NUMBER() OVER (Order by Id) AS RowNumber,
  28. claimantID, agentID, (etc...)
  29. FROM
  30. tblContacts
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement