- 浏览: 378398 次
- 性别:
- 来自: 四川
文章分类
- 全部博客 (247)
- 数据库以及sql (11)
- java (48)
- 爬虫学习 (20)
- java编程 (28)
- python编程以及安装和配置 (27)
- oracle数据库 (32)
- mongodb基本操作 (4)
- linux学习 (7)
- easyUI (2)
- nodeJs (8)
- python学习 (16)
- 其他 (13)
- hadoop (1)
- svn (1)
- 汉字 (1)
- windows (2)
- jsp (5)
- fiddler (1)
- ETL (1)
- teamviewer (1)
- maven (4)
- GIT (2)
- datagrip (1)
- ocr (1)
- redis (3)
- mysql (3)
- linux (1)
- 数据服务 (0)
最新评论
首先获取网站内容后,从内容中截取出ICP信息
--从text中初步截取出ICP
update z_beijing_all_web33 set ent_icp=substr(web_text,instr(web_text,'ICP',1)-2,35)
where is_yellp is null and web_text like '%ICP%' and ent_icp is null
update z_beijing_all_web33 set ent_icp=substr(web_text,instr(web_text,'icp',1)-2,35)
where is_yellp is null and web_text like '%icp%' and ent_icp is null
--截取icp
--截取ICP第一步
update z_beijing_all_web33 set ent_icp=substr(ent_icp,0,instr(ent_icp,'号-','1')+2)
where ent_icp is not null and ent_icp like '%号-%'
--截取ICP第二步
update z_beijing_all_web33 set ent_icp=substr(ent_icp,instr(ent_icp,'ICP','1')-1,length(ent_icp))
where ent_icp is not null and ent_icp like '%号-%'
--截取ICP第三步
update z_beijing_all_web33 set ent_icp= substr(ent_icp,instr(ent_icp,'ICP备','1')-1,length(ent_icp))
where ent_icp is not null and ent_icp like '%ICP证%' and ent_icp like '%号-%' and ent_icp like '%ICP备%'
--截取ICP第四步
update z_beijing_all_web33 set ent_icp= substr(ent_icp,instr(ent_icp,'ICP备','1')-1,length(ent_icp))
where ent_icp is not null and ent_icp like '%许可证%' and ent_icp like '%号-%' and ent_icp like '%ICP备%'
--截取ICP第五步
update z_beijing_all_web33 set ent_icp=substr(ent_icp,instr(ent_icp,':','1')+1,length(ent_icp))
where ent_icp is not null and (ent_icp like '%备案%' and ent_icp like '%:%' ) and ent_icp like '%号-%' and ent_icp like '%ICP备%'
--截取ICP第六步
update z_beijing_all_web33 set ent_icp=substr(ent_icp,instr(ent_icp,':','1')+1,length(ent_icp))
where ent_icp is not null and (ent_icp like '%备案%' and ent_icp like '%:%' ) and ent_icp like '%号-%' and ent_icp like '%ICP备%'
--截取ICP第七步
update z_beijing_all_web33 set ent_icp=substr(ent_icp,0,instr(ent_icp,'号','1'))
where ent_icp is not null and ent_icp like '%号%' and ent_icp not like '%号-%' and ent_icp not like '%证号%'
--截取ICP第八步
update z_beijing_all_web33 set ent_icp= substr(ent_icp,instr(ent_icp,'ICP备','1')-1,length(ent_icp))
where ent_icp is not null and ent_icp like '%许可证%' and ent_icp like '%号%' and ent_icp not like '%号-%' and ent_icp like '%ICP备%'
--截取ICP第九步
update z_beijing_all_web33 set ent_icp=substr(ent_icp,instr(ent_icp,'ICP','1')-1,length(ent_icp))
where ent_icp is not null and ent_icp like '%号%' and ent_icp not like '%号-%'
--截取ICP第十步
update z_beijing_all_web33 set ent_icp=substr(ent_icp,instr(ent_icp,'ICP备','1')-1,length(ent_icp))
where ent_icp is not null and ent_icp like '%号%' and ent_icp not like '%号-%' and ent_icp like '%证%' and ent_icp like '%ICP备%'
--截取ICP第十一步
update z_beijing_all_web33 set ent_icp=substr(ent_icp,0,instr(ent_icp,'京公网安备','1')-1)
where ent_icp like '%京公网安备%'
--截取ICP第十二步
update z_beijing_all_web33 set ent_icp=substr(ent_icp,0,instr(ent_icp,'固定电话','1')-1)
where ent_icp like '%固定电话%'
--截取ICP第十三步
update z_beijing_all_web33 set ent_icp=substr(ent_icp,0,instr(ent_icp,'电话','1')-1)
where ent_icp like '%电话%'
--截取ICP第十四步
update z_beijing_all_web33 set ent_icp=substr(ent_icp,0,instr(ent_icp,'咨询热线','1')-1)
where ent_icp like '%咨询热线%'
--截取ICP第十五步
update z_beijing_all_web33 set ent_icp=substr(ent_icp,0,instr(ent_icp,'版权所有','1')-1)
where ent_icp like '%版权所有%'
--截取ICP第十六步
update z_beijing_all_web33 set ent_icp=substr(ent_icp,0,instr(ent_icp,'地址','1')-1)
where ent_icp like '%地址%'
-----------------------------
update z_beijing_all_web33 set ent_icp = replace(ent_icp,'?','') where ent_icp like '%?%'
--从text中初步截取出ICP
update z_beijing_all_web33 set ent_icp=substr(web_text,instr(web_text,'ICP',1)-2,35)
where is_yellp is null and web_text like '%ICP%' and ent_icp is null
update z_beijing_all_web33 set ent_icp=substr(web_text,instr(web_text,'icp',1)-2,35)
where is_yellp is null and web_text like '%icp%' and ent_icp is null
--截取icp
--截取ICP第一步
update z_beijing_all_web33 set ent_icp=substr(ent_icp,0,instr(ent_icp,'号-','1')+2)
where ent_icp is not null and ent_icp like '%号-%'
--截取ICP第二步
update z_beijing_all_web33 set ent_icp=substr(ent_icp,instr(ent_icp,'ICP','1')-1,length(ent_icp))
where ent_icp is not null and ent_icp like '%号-%'
--截取ICP第三步
update z_beijing_all_web33 set ent_icp= substr(ent_icp,instr(ent_icp,'ICP备','1')-1,length(ent_icp))
where ent_icp is not null and ent_icp like '%ICP证%' and ent_icp like '%号-%' and ent_icp like '%ICP备%'
--截取ICP第四步
update z_beijing_all_web33 set ent_icp= substr(ent_icp,instr(ent_icp,'ICP备','1')-1,length(ent_icp))
where ent_icp is not null and ent_icp like '%许可证%' and ent_icp like '%号-%' and ent_icp like '%ICP备%'
--截取ICP第五步
update z_beijing_all_web33 set ent_icp=substr(ent_icp,instr(ent_icp,':','1')+1,length(ent_icp))
where ent_icp is not null and (ent_icp like '%备案%' and ent_icp like '%:%' ) and ent_icp like '%号-%' and ent_icp like '%ICP备%'
--截取ICP第六步
update z_beijing_all_web33 set ent_icp=substr(ent_icp,instr(ent_icp,':','1')+1,length(ent_icp))
where ent_icp is not null and (ent_icp like '%备案%' and ent_icp like '%:%' ) and ent_icp like '%号-%' and ent_icp like '%ICP备%'
--截取ICP第七步
update z_beijing_all_web33 set ent_icp=substr(ent_icp,0,instr(ent_icp,'号','1'))
where ent_icp is not null and ent_icp like '%号%' and ent_icp not like '%号-%' and ent_icp not like '%证号%'
--截取ICP第八步
update z_beijing_all_web33 set ent_icp= substr(ent_icp,instr(ent_icp,'ICP备','1')-1,length(ent_icp))
where ent_icp is not null and ent_icp like '%许可证%' and ent_icp like '%号%' and ent_icp not like '%号-%' and ent_icp like '%ICP备%'
--截取ICP第九步
update z_beijing_all_web33 set ent_icp=substr(ent_icp,instr(ent_icp,'ICP','1')-1,length(ent_icp))
where ent_icp is not null and ent_icp like '%号%' and ent_icp not like '%号-%'
--截取ICP第十步
update z_beijing_all_web33 set ent_icp=substr(ent_icp,instr(ent_icp,'ICP备','1')-1,length(ent_icp))
where ent_icp is not null and ent_icp like '%号%' and ent_icp not like '%号-%' and ent_icp like '%证%' and ent_icp like '%ICP备%'
--截取ICP第十一步
update z_beijing_all_web33 set ent_icp=substr(ent_icp,0,instr(ent_icp,'京公网安备','1')-1)
where ent_icp like '%京公网安备%'
--截取ICP第十二步
update z_beijing_all_web33 set ent_icp=substr(ent_icp,0,instr(ent_icp,'固定电话','1')-1)
where ent_icp like '%固定电话%'
--截取ICP第十三步
update z_beijing_all_web33 set ent_icp=substr(ent_icp,0,instr(ent_icp,'电话','1')-1)
where ent_icp like '%电话%'
--截取ICP第十四步
update z_beijing_all_web33 set ent_icp=substr(ent_icp,0,instr(ent_icp,'咨询热线','1')-1)
where ent_icp like '%咨询热线%'
--截取ICP第十五步
update z_beijing_all_web33 set ent_icp=substr(ent_icp,0,instr(ent_icp,'版权所有','1')-1)
where ent_icp like '%版权所有%'
--截取ICP第十六步
update z_beijing_all_web33 set ent_icp=substr(ent_icp,0,instr(ent_icp,'地址','1')-1)
where ent_icp like '%地址%'
-----------------------------
update z_beijing_all_web33 set ent_icp = replace(ent_icp,'?','') where ent_icp like '%?%'
发表评论
-
oracle插入O2O_SHOP_INFO_LS
2018-11-16 17:16 746insert into O2O_SHOP_INFO_LS ( ... -
更新区域代码code
2018-09-20 18:26 804--1 update o2o_shop_info_app a ... -
三亚数据库统计sql
2018-09-18 18:26 729--差评数据统计 select a.shop_name, ... -
oracle导入导出某个用户下的所有表以及约束
2018-09-06 11:28 3984导出oracle数据库某个用户下的所有表 exp 用户名/密码 ... -
Oracle如何查询所有表的约束(外键等)
2018-09-06 11:00 81101.查询出所有表的唯一键约束的 禁用sql select ' ... -
数据库恢复表
2018-08-28 15:49 0在删除数据的时候不小 ... -
ELM数据查询
2018-08-16 16:15 0--许可证过期的 (有效期) select shop_name ... -
oracle添加表空间文件以及查询表空间使用率
2018-07-27 17:57 11931.进入cmd窗口 2.超级用户登录:sqlplus / a ... -
oracle数据库存储过程
2018-07-11 17:55 629... -
关系型数据库的ACID特性(金典解读关系型数据的一致性)
2018-07-11 16:55 2196关系型数据库的ACID特性 A:原子性 C:一致性 I:隔离性 ... -
提示符导入导出oracle表数据
2018-07-02 10:40 476--导出 C:\Users\1>exp o2optzq/ ... -
oracle模糊查询 包含1,而不包含11,的数据
2018-05-22 17:24 1032aaa表数据如下: 序号 name rowid ... -
解决PLSQL连接oracle慢 的方法(监听日志文件过大)
2018-03-07 10:33 1300原因: G:\app\Administrator\diag\t ... -
oracle数据库中查询 一个字段包含另一个字段sql
2018-01-17 17:10 9929select * from table a where 字 ... -
plsql连接本地oracle数据库,而远程主机却无法连接,出现无监听程序的解决方法
2018-01-11 14:34 1665作者原地址:http://blog.csdn.net/u011 ... -
PLSQL 添加新用户和配置权限
2018-01-02 15:12 18131.PLSQL登录超级管理员 2.找到All objects中 ... -
oracle时间转换为字符、截取字符
2017-12-11 17:36 711表示year的:y 表示年的最后一位 yy 表示年的最后2位 ... -
oracle 根据数值范围分组 (group by )
2017-12-08 17:51 2746create table aa_test ( name va ... -
判断web死链接
2017-12-05 11:09 487--第一步 update bj_web20171204 set ... -
windows下命令提示符导出oracle 数据表 (exp)
2017-11-10 10:48 1148使用exp方式导出本地oracle数据库中的数据表 1.导 ...
相关推荐
SQL 语句截取时间 只显示 年、月、日的格式 在数据库中,经常需要对时间字段进行截取和格式化,以满足不同的显示需求。下面将详细介绍如何使用 SQL 语句截取时间,只显示年、月、日的格式。 使用 CONVERT 函数 ...
### 完成超长SQL语句执行前拆分 #### 概述 在使用Visual Basic (简称VB)进行数据库操作时,可能会遇到因为SQL语句过长而导致无法正常执行的问题。这种情况下,即使该SQL语句可以在SQL Server的查询分析器中成功运行...
### 使用SQL语句截取字符串 在数据库管理与查询中,经常需要对存储的数据进行处理,其中一项常见的操作就是对字符串进行截取。这在数据分析、数据清洗等场景下尤为重要。SQL提供了内置函数来帮助我们完成这一任务,...
本资源“实用总结SQL语句大全”涵盖了SQL的基本概念、语法以及高级特性,旨在帮助用户全面理解和掌握SQL。 首先,SQL的核心在于查询。基本的查询语句`SELECT`用于从数据库中提取数据,可以配合`FROM`指定数据来源,...
本帮助文档旨在详细介绍SQL的各种语句和函数,帮助用户更好地理解和运用SQL进行数据操作。 1. **SQL基本概念** SQL的核心包括数据查询、数据更新、数据插入和数据删除,主要由以下部分组成: - DDL(Data ...
根据给定的信息,本文将对“全国省市区数据库SQL语句”进行详细的解析与扩展,以便更好地理解如何创建和管理一个包含中国所有省份信息的数据库。 ### 一、数据库及表结构创建 #### 1. 创建数据库 在SQL Server中,...
本资源“经典SQL语句函数大全”聚焦于SQL中的各种函数,旨在帮助用户掌握SQL的核心功能并提升数据库操作效率。** **一、SQL基本概念** SQL分为DDL(Data Definition Language)和DML(Data Manipulation Language)...
在SQL Server 2005中,数据库管理和数据查询是其核心功能,而函数和SQL语句则是实现这些功能的重要工具。这篇笔记主要探讨的是SQL Server 2005中的常用函数以及一些经典的SQL语句,这对于数据库管理员和开发人员来说...
### SQL语句教程大全 #### 一、SQL基础指令概览 SQL(Structured Query Language),即结构化查询语言,是一种用于管理关系型数据库的标准语言。它不仅被用于数据的存储和检索,还广泛应用于数据的更新、删除以及...
"数据库系统原理实验报告-SQL查询语句" 数据库系统原理实验报告-SQL查询语句是关系数据库管理系统的核心组件之一。实验报告的主要目的是让学生熟悉关系数据库标准语言 SQL,並且掌握基本的 SQL 查询语句。 一、...
根据提供的文档信息,本文将对《ORACLE SQL 语句(典型应用总结)》中的关键知识点进行详细解读与总结。 ### 第一章 基本SELECT语句 #### 1. SQL语法要求 在Oracle中编写SQL语句时,需要注意以下几点: - **大小写...
(1)选定某一主题,创建一个oracle数据库,对其进行日常管理及应用(全部用SQL语句实现): 1、创建数据库实例,数据库表空间,创建管理员,普通用户,并分别授予相应权限; 2、至少建立5个表,以及表间关系,使用...
- substr('String', 1, 3):截取字符串中的特定部分。 - instr('t#i#m#r#a#n#', '#'):返回特定字符在字符串中的位置。 对于instr函数的参数可以有四个: - 如select instr('aunfukk','u',-1,1)fromdual:查找字符...
`<trim>` 标签用于对SQL字符串进行动态截取和修改,以适应不同的插入场景。 1. **`<trim>` 标签的 `prefix` 属性**: `prefix` 属性用于设置要在SQL语句前添加的内容。在例子中,它添加了 `'('`,表示在插入语句的...
### SQL语句练习题知识点解析 #### 1. 查询年龄小于20岁的学生姓名与年龄 ```sql SELECT sname, sage FROM s WHERE sage ; ``` **知识点:** - **基本查询语法:** 使用`SELECT`来指定要查询的列,`FROM`指定表名。 ...
在这个话题中,我们将深入探讨SQL语句,特别是关于常用的SQL函数,这些函数在处理字符、数值、日期和数据转换时非常有用。 首先,让我们关注字符函数。字符函数主要用于处理文本数据,它们接受字符输入并返回字符或...
资源名称:SQL语句大全大全(经典珍藏版)资源截图: 资源太大,传百度网盘了,链接在附件中,有需要的同学自取。
### SQL 常用语句及函数详解 #### 一、WHERE 条件 `WHERE` 子句用于在 `SELECT` 语句中过滤记录。它定义了要选择哪些行的标准。 **示例:** ```sql SELECT 'K'||item_id FROM item WHERE item_id = '69010281106';...
中国省市区的sql语句,帮助大伙构建自己的省、市、区三级列表查询