-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathOdev6.sql
More file actions
28 lines (15 loc) · 766 Bytes
/
Copy pathOdev6.sql
File metadata and controls
28 lines (15 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
--Ödev6'in 1. Ödev konusu:
--film tablosunda bulunan rental_rate sütunundaki değerlerin ortalaması nedir?
select avg(rental_rate) from film;
--Ödev6'in 2. Ödev konusu:
-- film tablosunda bulunan filmlerden kaç tanesi 'C' karakteri ile başlar?
select count(title) from film
where title like 'C%';
--Ödev6'in 3. Ödev konusu:
--film tablosunda bulunan filmlerden rental_rate değeri 0.99 a eşit olan en uzun (length) film kaç dakikadır?
select max(length) length from film
where rental_rate = 0.99
--Ödev6'in 4. Ödev Konusu:
-- film tablosunda bulunan filmlerin uzunluğu 150 dakikadan büyük olanlarına ait kaç farklı replacement_cost değeri vardır?
select COUNT(DISTINCT replacement_cost) from film
where length > 150