-
Notifications
You must be signed in to change notification settings - Fork 0
/
Odev8.sql
53 lines (36 loc) · 1.11 KB
/
Odev8.sql
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
--1. test veritabanınızda employee isimli sütun bilgileri id(INTEGER), name VARCHAR(50), birthday DATE, email VARCHAR(100) olan bir tablo oluşturalım.
CREATE TABLE employee(
id SERIAL PRIMARY KEY,
name VARCHAR(50) NOT NULL,
birthday DATE,
email VARCHAR(100)
);
--2. Oluşturduğumuz employee tablosuna 'Mockaroo' servisini kullanarak 50 adet veri ekleyelim.
--3. Sütunların her birine göre diğer sütunları güncelleyecek 5 adet UPDATE işlemi yapalım.
UPDATE employee
SET name='Claire'
WHERE id=2;
UPDATE employee
SET birthday='2011-10-17'
WHERE id=3;
UPDATE employee
SET email='[email protected]'
WHERE id=4;
UPDATE employee
SET email='[email protected]'
WHERE id=4;
UPDATE employee
SET email='[email protected]',
name ='AAAA'
WHERE id=4;
--4. Sütunların her birine göre ilgili satırı silecek 5 adet DELETE işlemi yapalım.
DELETE FROM employee
WHERE id=2;
DELETE FROM employee
WHERE name='Claire';
DELETE FROM employee
WHERE email='[email protected]';
DELETE FROM employee
WHERE birthday='1990-04-11';
DELETE FROM employee
WHERE name = 'Storm' AND email= '[email protected]';