Datasets:
File size: 1,559 Bytes
e8c001c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | CREATE DATABASE IF NOT EXISTS internal_platform_db;
CREATE TABLE IF NOT EXISTS internal_platform_db.t_app_urlsafe_cont_topwebsites_collect_df_query_engine_125 (
`domain` STRING COMMENT '域名',
`site` STRING COMMENT '站点',
`ds` BIGINT COMMENT 'NoComment',
`src` STRING COMMENT 'NoComment'
) STORED AS ORC;
INSERT INTO TABLE internal_platform_db.t_app_urlsafe_cont_topwebsites_collect_df_query_engine_125
VALUES
('www.example.com', 'example', 20260608, 'transco'),
('ab.short.io', 'short', 20260608, 'transco'),
('long-domain-name.org', 'longdomain', 20260608, 'transco'),
('test.site.net', 'testsite', 20260608, 'transco'),
('abcd.domain.cn', 'abcddomain', 20260608, 'transco'),
('xy.z', 'xyz', 20260608, 'transco'),
('bigsite.example.com', 'bigsite', 20260608, 'other_src'),
('another.domain.com', 'another', 20260607, 'transco');
CREATE TABLE IF NOT EXISTS internal_platform_db.t_dws_urlsafe_cont_potential_risk_domain_di_query_engine_125 (
`ds` BIGINT COMMENT 'ds',
`type` STRING COMMENT 'type',
`fuzzer` STRING COMMENT 'fuzzer',
`result_domain` STRING COMMENT 'result_domain',
`original_domain` STRING COMMENT 'original_domain'
) STORED AS ORC;
-- Agent 候选目标表
CREATE TABLE IF NOT EXISTS internal_platform_db.t_dws_urlsafe_cont_potential_risk_domain_di_cand_query_engine_125 (
`ds` BIGINT COMMENT 'ds',
`type` STRING COMMENT 'type',
`fuzzer` STRING COMMENT 'fuzzer',
`result_domain` STRING COMMENT 'result_domain',
`original_domain` STRING COMMENT 'original_domain'
) STORED AS ORC; |