无法弄清楚如何创建汇率表

时间:2019-03-21 22:30:11

标签: sqlite

我尝试执行以下两个命令来创建与汇率相关的货币对或表格。

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查询。

0 个答案:

没有答案