sqlite3 创建表前判断是否存在,不存在才创建

创建表clientInfo,存在后不创建,不存在才创建

create table if not exists clientInfo(firstLoginTime DATETIME)

你可能感兴趣的:(sqlite3)