You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
510 B
7 lines
510 B
-- 更新数据
|
|
delete from isop_diting.tb_cep_attr where attr_name = 'trojan_type';
|
|
delete from isop_diting.tb_cep_attr where attr_name = 'account';
|
|
delete from isop_diting.tb_cep_attr where attr_name = 'worm_family';
|
|
delete from isop_diting.tb_cep_attr where attr_name = 'interface';
|
|
INSERT INTO isop_diting.tb_cep_attr (attr_name, attr_type, is_system,is_common)
|
|
VALUES ('trojan_type', 'String', '1','1'),('interface', 'String','1','1'),('worm_family', 'String','1','1'),('account', 'String','1','1');
|
|
|