Advertisement
hecrus

MySQL DeleteItem

Oct 18th, 2020
2,132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
T-SQL 0.28 KB | None | 0 0
  1. CREATE PROCEDURE [dbo].[crud_tst-mysql_deleteItem]
  2.     @itemID int,
  3.     @username nvarchar(32)
  4. AS
  5. begin
  6.     -- удаление строки таблицы
  7.     SET NOCOUNT off ;  
  8.     exec('delete from remotelyCreatedTable where id='+ @itemID) at mysql1  
  9.    
  10.     select '' Msg, 1 Result
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement