質問編集履歴
2
言語選択
test
CHANGED
File without changes
|
test
CHANGED
@@ -30,7 +30,7 @@
|
|
30
30
|
|
31
31
|
どのように削除するのか、データの入れ方が悪いのか教えて頂きたいです。
|
32
32
|
|
33
|
-
```
|
33
|
+
```SQL
|
34
34
|
|
35
35
|
|
36
36
|
|
1
タグの間違い、キャプチャを取り除きコードに変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -30,6 +30,46 @@
|
|
30
30
|
|
31
31
|
どのように削除するのか、データの入れ方が悪いのか教えて頂きたいです。
|
32
32
|
|
33
|
+
```Python
|
33
34
|
|
34
35
|
|
36
|
+
|
37
|
+
. open FILENAME" to reopen on a persistent database.
|
38
|
+
|
39
|
+
sqlite> .open aaa.db
|
40
|
+
|
41
|
+
sqlite> create table test_table(id, name, shozoku, tel, vear);
|
42
|
+
|
43
|
+
sqlite> .tables
|
44
|
+
|
45
|
+
test_table
|
46
|
+
|
47
|
+
sqlite> insert into test_table(id,name, shozoku, tel, year)values(710, 'kikuchi', 'bungaku' ,2459, 1980);
|
48
|
+
|
35
|
-
|
49
|
+
sqlite> insert into test_table(id,name, shozoku, tel.vear)values(794,'yanagi', 'kokusai', 9609, 1990);
|
50
|
+
|
51
|
+
sqlite> insert into test_table(id,name, shozoku, tel, year)values(800, 'hui ita','keizai',9847,2000);
|
52
|
+
|
53
|
+
sqlite> select * from test_table;
|
54
|
+
|
55
|
+
710|kikuchilbungakul2459|1980
|
56
|
+
|
57
|
+
794|yanagi|kokusai|9609|1990
|
58
|
+
|
59
|
+
800|huiita|keizai|9847|2000
|
60
|
+
|
61
|
+
sqlite> delete from test_table where id = '710'
|
62
|
+
|
63
|
+
.> ;
|
64
|
+
|
65
|
+
sqlite> select * from test_ table;
|
66
|
+
|
67
|
+
710|kikuch|bungaku|2459|1980
|
68
|
+
|
69
|
+
794|yanagi|kokusai|9609|1990
|
70
|
+
|
71
|
+
800|hujita|keizai|9847|2000
|
72
|
+
|
73
|
+
salite>
|
74
|
+
|
75
|
+
```
|