1-Müşteri(customers)
numarası girildiğinde o müşteriye ait bilgileri gösteren SP yazınız?
Exec musteri
5 gibi..
2- siparis
numarası girilen ürünün toplam fiyatını bulan SP yi yazınız ?
Execute
siparis_hesapla
3….
3- kategori numarasına göre kaç
adet ürün olduğunu bulan SP yi
yazınız
Exec kategori 1….
create proc cevap1
@id nchar(5)
as
select* from customers
where customerid=@id
exec cevap1 'anton'
--------------------------------------------------------
create proc cevap2
@id int
as
select sum(unitprice*quantity-unitprice*quantity*discount)
as toplam from [order details] where orderid=@id
exec cevap2 10248
----------------------------------------------------------
create procedure cevap3
@id int
as
select count(*)as adet from products
where categoryid=@id
execute cevap3 5
Hiç yorum yok:
Yorum Gönder