我尝试执行以下两个命令来创建与汇率相关的货币对或表格。
CREATE TABLE IF NOT EXISTS Currencies(
numeric_code integer NOT NULL PRIMARY KEY,
code text NOT NULL UNIQUE
CREATE TABLE IF NOT EXISTS ExchangeRates(
id integer NOT NULL PRIMARY KEY AUTOINCREMENT,
numeric_code integer NOT NULL,
exchange_rate real NO NULL,
date_from date NOT NULL,
FOREIGN KEY (numeric_code) REFERENCES Currencies(numeric_code)
我收到错误消息:SQLITE_ERROR: incomplete input errno: 1, code: 'SQLITE_ERROR'
怎么了?我不擅长SQL查询。