-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathi01_create2.sql
More file actions
35 lines (28 loc) · 839 Bytes
/
Copy pathi01_create2.sql
File metadata and controls
35 lines (28 loc) · 839 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
29
30
31
32
33
34
/*===========================
TABLO OLUSTURMA (CRUD-Create)
==============================*/
use sys;
CREATE TABLE student
(id VARCHAR(4),
name VARCHAR(25),
age int
);
/*===========================
VERİ GİRİSİ
==============================*/
INSERT INTO student VALUES('1001', 'MEHMET ALİ', 25);
INSERT INTO student VALUES('1002', 'AYSE YILMAZ', 34);
INSERT INTO student VALUES('1003', 'JOHN STAR', 56);
INSERT INTO student VALUES('1004', 'MARY BROWN', 17);
/*===========================
PARCALİ VERİ GİRİSİ
==============================*/
insert into student (name,age) values('samet ay',24) ;
/*===========================
TABLODAN VERİ SORGULAMA
==============================*/
SELECT * from urunler;
/*===========================
TABLO SİLME
==============================*/
drop table urunler;