sqlにデータを追加しました。そのデータを削除したいのですがうまく削除することができません。使用しているのはsqlite3.exeです。
データベース名 aaa
テーブル名 test_table
カラム名 id,name,shozoku,tel,year
deleate from test_table where id ='710'
;
と実行しidが710である一番上のデータを削除しようと思いましたがうまくできません。
deleate from test_table where id ='710';
deleate from test_table where id ="710"
;
deleate from test_table where id ="710";
で実行してもうまくできませんでした。
自分が作成したものの流れが画像のようになります。画像はコマンドプロンプトです。
どのように削除するのか、データの入れ方が悪いのか教えて頂きたいです。
SQL
1 2. open FILENAME" to reopen on a persistent database. 3sqlite> .open aaa.db 4sqlite> create table test_table(id, name, shozoku, tel, vear); 5sqlite> .tables 6test_table 7sqlite> insert into test_table(id,name, shozoku, tel, year)values(710, 'kikuchi', 'bungaku' ,2459, 1980); 8sqlite> insert into test_table(id,name, shozoku, tel.vear)values(794,'yanagi', 'kokusai', 9609, 1990); 9sqlite> insert into test_table(id,name, shozoku, tel, year)values(800, 'hui ita','keizai',9847,2000); 10sqlite> select * from test_table; 11710|kikuchilbungakul2459|1980 12794|yanagi|kokusai|9609|1990 13800|huiita|keizai|9847|2000 14sqlite> delete from test_table where id = '710' 15.> ; 16sqlite> select * from test_ table; 17710|kikuch|bungaku|2459|1980 18794|yanagi|kokusai|9609|1990 19800|hujita|keizai|9847|2000 20salite>
回答1件
あなたの回答
tips
プレビュー