Skip to content

Instantly share code, notes, and snippets.

@noqisofon
Created November 30, 2010 04:58
Show Gist options
  • Save noqisofon/721178 to your computer and use it in GitHub Desktop.
Save noqisofon/721178 to your computer and use it in GitHub Desktop.
テーブルが存在するか調べる sqlite 用 SQL クエリ。
select count(*)
from
sqlite_master
where
type = 'table' and
name = ?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment