Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
aserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
15所TongWeb
aserver
Commits
4eb20b64
Commit
4eb20b64
authored
Oct 14, 2020
by
郭晓俊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
创建搜索词记录表,以及创建序列
parent
ff05ef9d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
0 deletions
+38
-0
DM_UpdateSQL.xml
src/main/resources/DBUpdate/DM_UpdateSQL.xml
+38
-0
No files found.
src/main/resources/DBUpdate/DM_UpdateSQL.xml
View file @
4eb20b64
...
...
@@ -2072,4 +2072,41 @@
create index INDEX_PATH on AS_FILE (path);
</sql>
</version>
<version
edition=
"87"
description=
"创建搜索词记录表,以及创建序列"
>
<sql
creator=
"guoxiaojun"
createDate=
"20201014"
note=
"创建搜索词记录表,以及创建序列"
>
CREATE TABLE
"AS_SEARCH_TERM"
(
"ID" NUMBER(9,0) NOT NULL,
"SEARCH_TERM" VARCHAR2(1000),
"SEARCH_COUNT" NUMBER(9,0),
"USERNAME" VARCHAR2(255),
"YEAR" NUMBER(9,0),
"MONTH" NUMBER(9,0),
CLUSTER PRIMARY KEY("ID")) STORAGE(ON "MAIN", CLUSTERBTR) ;
COMMENT ON
TABLE "AS_SEARCH_TERM" IS '搜索词记录表';
COMMENT ON COLUMN
"AS_SEARCH_TERM"."SEARCH_TERM" IS '搜索词';
COMMENT ON COLUMN
"AS_SEARCH_TERM"."SEARCH_COUNT" IS
'搜索次数';
COMMENT ON
COLUMN "AS_SEARCH_TERM"."USERNAME" IS '用户名';
COMMENT ON COLUMN "AS_SEARCH_TERM"."YEAR" IS
'年度';
COMMENT ON COLUMN "AS_SEARCH_TERM"."MONTH" IS
'月份';
CREATE SEQUENCE "SEQ_AS_SEARCH_TERM"
INCREMENT BY 1
START WITH 1
MAXVALUE 999999999999
MINVALUE 1
NOCYCLE
NOCACHE
NOORDER
;
</sql>
</version>
</update>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment