SQLite 徹底研究 : DROP TABLE を存在しないテーブルに行なった時のエラー2018年08月23日 13時45分54秒

DROP TABLE は作成されたテーブルを削除するコマンド。DROP TABLE を存在しないテーブルに行なうとエラーになる。
% sqlite3
SQLite version 3.22.0 2018-01-22 18:45:57
Enter ".help" for usage hints.
Connected to a transient in-memory database.
Use ".open FILENAME" to reopen on a persistent database.
sqlite> DROP TABLE integers;
Error: no such table: integers
sqlite> .exit

SQLite データベース徹底研究 - Top