22 lines
571 B
MySQL
22 lines
571 B
MySQL
|
-- drop table REWARD_GAINERS
|
|||
|
create table REWARD_GAINERS
|
|||
|
(
|
|||
|
award_date VARCHAR2(20),
|
|||
|
reward_index INTEGER,
|
|||
|
gainer_name VARCHAR2(100),
|
|||
|
gainer_code VARCHAR2(100)
|
|||
|
)
|
|||
|
tablespace DESKTOP_ARCHIEVEMENT;
|
|||
|
-- Add comments to the table
|
|||
|
comment on table REWARD_GAINERS
|
|||
|
is '<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ա<EFBFBD><EFBFBD>';
|
|||
|
-- Add comments to the columns
|
|||
|
comment on column REWARD_GAINERS.award_date
|
|||
|
is '<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
|||
|
comment on column REWARD_GAINERS.reward_index
|
|||
|
is '<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
|||
|
comment on column REWARD_GAINERS.gainer_name
|
|||
|
is '<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
|||
|
comment on column REWARD_GAINERS.gainer_code
|
|||
|
is '<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>߹<EFBFBD><EFBFBD><EFBFBD>';
|