SQLite3でビュー(VIEW)を削除する
環境
Windows10 64bit
SQLite3.37.0
書式
DROP VIEW ビュー名;
作成済みのビューを削除します
使用例
1.作成済みのビューを確認します
sqlite> .tables
addrview user
2.ビューを削除します
sqlite> drop view addrview;
3.ビュー削除確認
sqlite> .tables
user
Coding Changes the World
環境
Windows10 64bit
SQLite3.37.0
書式
DROP VIEW ビュー名;
作成済みのビューを削除します
使用例
1.作成済みのビューを確認します
sqlite> .tables
addrview user
2.ビューを削除します
sqlite> drop view addrview;
3.ビュー削除確認
sqlite> .tables
user