Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. SELECT [FirstName]
  2. ,[LastName]
  3. ,[UniqueId]
  4. FROM [dbo].[User]
  5. GO
  6.  
  7. SELECT [UserId]
  8. ,[FilePath]
  9. FROM [dbo].[UserFile]
  10. GO
  11.  
  12. INSERT INTO [dbo].[User]
  13. ([FirstName]
  14. ,[LastName]
  15. ,[UniqueId])
  16. VALUES
  17. ('Casey'
  18. ,'Royal'
  19. ,'93DCB9F4-2D25-4FF7-A04E-6F2C8B83FB01')
  20. GO
  21.  
  22. INSERT INTO [dbo].[UserFile]
  23. ([UserId]
  24. ,[FilePath])
  25. VALUES
  26. ('93DCB9F4-2D25-4FF7-A04E-6F2C8B83FB01'
  27. ,'casey\casey.jpg')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement