Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. SELECT *
  2. FROM [dbo].[MFOrderStockLink]
  3. where DocStatus = 0
  4. GO
  5.  
  6. UPDATE [dbo].[MFOrderStockLink]
  7. SET [DocStatus] = 10
  8. where OrderNumber = 'Tutaj wpisz numer ktory chcesz zmienic' and DocStatus = 0
  9.  
  10. Go
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement