创建表 / 指定默认值

CREATE TABLE Orders (
  order_id INTEGER NOT NULL,
  order_date DATE NOT NULL DEFAULT CURRENT_DATE,
  items_count INTEGER DEFAULT 1
)