質問編集履歴

2

言語選択

2020/11/11 16:02

投稿

takerunmh
takerunmh

スコア5

test CHANGED
File without changes
test CHANGED
@@ -30,7 +30,7 @@
30
30
 
31
31
  どのように削除するのか、データの入れ方が悪いのか教えて頂きたいです。
32
32
 
33
- ```Python
33
+ ```SQL
34
34
 
35
35
 
36
36
 

1

タグの間違い、キャプチャを取り除きコードに変更

2020/11/11 16:02

投稿

takerunmh
takerunmh

スコア5

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
- ![![イメージ説明](a341364bc8ae63e97336f842b2c17b15.jpeg)](4c6b953349a47a362aa96762ae8692a0.jpeg)
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
+ ```