Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- CREATE PROCEDURE [dbo].[crud_deps_deleteItem]
- @itemID int,
- @username nvarchar(32)
- AS
- -- удаление строки таблицы
- SET NOCOUNT off ;
- -- проверки перед удалением
- declare @count int
- select @count = count(*) from hr_humans
- where depID = @itemID
- if(@count>0) begin
- select 'На поле есть ссылки в humans ('+cast(@count as nvarchar)+' шт.)' Msg, 0 Result
- return
- end
- -- удаление элемента
- delete from hr_departments where id = @itemID
- if (@@ROWCOUNT > 0) begin
- select '' Msg, 1 Result
- end else begin
- select 'Запись не удалилась из базы' Msg, 0 Result
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement