The Queries in this page solved at the library database. It is a sample database generated by randomly records. You can download it from the link. You will see more than 500 examples in the future. You can filter from the search panel above by selecting sql statements. I hope you will like it

SQL Update Examples

1-) Bütün öğrencilerin puanını 100 olarak güncelleyiniz.

Solution 1)

Update students set point=100


ETİKETLER

Update -
2-) Bütün kitapların puanını 5 puan arttırınız.

Solution 1)

Update books set point +=5

Solution 2)

Update books set point = point + 5


ETİKETLER

Update -
3-) Adı Ali olan öğrencilerin adını Veli olarak güncelleyiniz.

Solution 1)

Update students set name='Veli' 
       where name = 'Ali'


ETİKETLER

Update - Where -
4-) 20 Numaralı öğrencinin adını Süleyman olarak güncelleyiniz.

Solution 1)

Update students set name = 'Süleyman' where studentId = 20


ETİKETLER

Update - Where -
5-) Numarası 20 ile 30 arasında olan öğrencilerin sınıfını 10C olarak güncelleyiniz.

Solution 1)

Update students set sinif = '10C' where studentId between 20 and 30


ETİKETLER

Update - Where - Between -
6-) 10E sınıfının erkek öğrencilerinin puanını 5 puan arttıran sorguyu yazınız.

Solution 1)

Update students set point += 5 where sinif = '10E' and gender = 'E'


ETİKETLER

Update - Where - Multi Condition -
7-) 24 Numaralı öğrencinin adını Arzu, soyadını Çelik olarak güncelleyen sorguyu yazınız.

Solution 1)

Update students set name = 'Arzu', surname = 'Çelik' where studentId = 24


ETİKETLER

Update - Where -
8-) Sayfasayısı en fazla oaln kitapbın puanını 10 arttırın

Solution 1)

Update books set point +=10 
       where pagecount =  (Select MAX(pagecount) from books)


ETİKETLER

Update - Where - Sub Query - Aggragate -
9-) Dram türündeki kitapların puanını 1 arttıran sorguyu yazınız.

Solution 1)

Update books set point += 1 
       where typeId = (Select typeId from books where name = 'Horror')

Solution 2)

Update books set point += 1 
       where typeId in (Select typeId from books where name = 'Horror')


ETİKETLER

Update - Where - Sub Query -
Library Database
Database