建立日历表sql语句

时间:2022-10-05 15:25:14 阅读: 最新文章 文档下载
说明:文章内容仅供预览,部分内容可能不全。下载后的文档,内容与下面显示的完全一致。下载之前请确认下面内容是否您想要的,是否完整无缺。

-- Create table

create table ZZ_WEEKDAY

(

days VARCHAR2(20),

flag VARCHAR2(10),

notes VARCHAR2(100)

);

-- Add comments to the columns

comment on column ZZ_WEEKDAY.days

is '日期';

comment on column ZZ_WEEKDAY.flag

is '班/休';

comment on column ZZ_WEEKDAY.notes

is '说明';

本文来源:https://www.wddqw.com/doc/8bd6d74f986648d7c1c708a1284ac850ad020460.html