contoh penggunaan if exists SQL Server

Berikut ini adalah contoh store procedure dimana di dalamnya terdapat query if exists. dengan sp ini, nim yang diinput akan dihapus jika sudah ada di dalam table.

 

CREATE proc dbo.sp_siklus_delete_msbk
@nimhs as char(10)
as
if exists (select * from msbk where nimhs = @nimhs)
delete msbk where nimhs = @nimhs

Leave a Comment

Please note: Comment moderation is enabled and may delay your comment. There is no need to resubmit your comment.