`

截取网页ICP的sql语句

sql 
阅读更多
首先获取网站内容后,从内容中截取出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 '%?%'
分享到:
评论

相关推荐

    sql语句 截取时间 只显示 年,月,日的格式

    SQL 语句截取时间 只显示 年、月、日的格式 在数据库中,经常需要对时间字段进行截取和格式化,以满足不同的显示需求。下面将详细介绍如何使用 SQL 语句截取时间,只显示年、月、日的格式。 使用 CONVERT 函数 ...

    完成超长SQL语句执行前拆分

    ### 完成超长SQL语句执行前拆分 #### 概述 在使用Visual Basic (简称VB)进行数据库操作时,可能会遇到因为SQL语句过长而导致无法正常执行的问题。这种情况下,即使该SQL语句可以在SQL Server的查询分析器中成功运行...

    用SQL语句截取字符串

    ### 使用SQL语句截取字符串 在数据库管理与查询中,经常需要对存储的数据进行处理,其中一项常见的操作就是对字符串进行截取。这在数据分析、数据清洗等场景下尤为重要。SQL提供了内置函数来帮助我们完成这一任务,...

    实用总结SQL语句大全实用总结SQL语句大全.rar

    本资源“实用总结SQL语句大全”涵盖了SQL的基本概念、语法以及高级特性,旨在帮助用户全面理解和掌握SQL。 首先,SQL的核心在于查询。基本的查询语句`SELECT`用于从数据库中提取数据,可以配合`FROM`指定数据来源,...

    SQL 语句 帮助文档

    本帮助文档旨在详细介绍SQL的各种语句和函数,帮助用户更好地理解和运用SQL进行数据操作。 1. **SQL基本概念** SQL的核心包括数据查询、数据更新、数据插入和数据删除,主要由以下部分组成: - DDL(Data ...

    全国省市区数据库SQL语句

    根据给定的信息,本文将对“全国省市区数据库SQL语句”进行详细的解析与扩展,以便更好地理解如何创建和管理一个包含中国所有省份信息的数据库。 ### 一、数据库及表结构创建 #### 1. 创建数据库 在SQL Server中,...

    经典SQL语句函数大全

    本资源“经典SQL语句函数大全”聚焦于SQL中的各种函数,旨在帮助用户掌握SQL的核心功能并提升数据库操作效率。** **一、SQL基本概念** SQL分为DDL(Data Definition Language)和DML(Data Manipulation Language)...

    sql server 2005 使用笔记之常用函数和经典sql语句

    在SQL Server 2005中,数据库管理和数据查询是其核心功能,而函数和SQL语句则是实现这些功能的重要工具。这篇笔记主要探讨的是SQL Server 2005中的常用函数以及一些经典的SQL语句,这对于数据库管理员和开发人员来说...

    SQL语句教程大全

    ### SQL语句教程大全 #### 一、SQL基础指令概览 SQL(Structured Query Language),即结构化查询语言,是一种用于管理关系型数据库的标准语言。它不仅被用于数据的存储和检索,还广泛应用于数据的更新、删除以及...

    数据库系统原理实验报告-SQL查询语句.doc

    "数据库系统原理实验报告-SQL查询语句" 数据库系统原理实验报告-SQL查询语句是关系数据库管理系统的核心组件之一。实验报告的主要目的是让学生熟悉关系数据库标准语言 SQL,並且掌握基本的 SQL 查询语句。 一、...

    ORACLE SQL 语句(典型应用总结).pdf

    根据提供的文档信息,本文将对《ORACLE SQL 语句(典型应用总结)》中的关键知识点进行详细解读与总结。 ### 第一章 基本SELECT语句 #### 1. SQL语法要求 在Oracle中编写SQL语句时,需要注意以下几点: - **大小写...

    学生成绩管理系统Oracle全部SQL语句.txt

    (1)选定某一主题,创建一个oracle数据库,对其进行日常管理及应用(全部用SQL语句实现): 1、创建数据库实例,数据库表空间,创建管理员,普通用户,并分别授予相应权限; 2、至少建立5个表,以及表间关系,使用...

    sql语句使用文档

    - substr('String', 1, 3):截取字符串中的特定部分。 - instr('t#i#m#r#a#n#', '#'):返回特定字符在字符串中的位置。 对于instr函数的参数可以有四个: - 如select instr('aunfukk','u',-1,1)fromdual:查找字符...

    mybatis动态插入sql语句的编写(csdn)————程序.pdf

    `<trim>` 标签用于对SQL字符串进行动态截取和修改,以适应不同的插入场景。 1. **`<trim>` 标签的 `prefix` 属性**: `prefix` 属性用于设置要在SQL语句前添加的内容。在例子中,它添加了 `'('`,表示在插入语句的...

    sql语句的练习题

    ### SQL语句练习题知识点解析 #### 1. 查询年龄小于20岁的学生姓名与年龄 ```sql SELECT sname, sage FROM s WHERE sage ; ``` **知识点:** - **基本查询语法:** 使用`SELECT`来指定要查询的列,`FROM`指定表名。 ...

    数据库sql语句的详解

    在这个话题中,我们将深入探讨SQL语句,特别是关于常用的SQL函数,这些函数在处理字符、数值、日期和数据转换时非常有用。 首先,让我们关注字符函数。字符函数主要用于处理文本数据,它们接受字符输入并返回字符或...

    SQL语句大全大全(经典珍藏版)

    资源名称:SQL语句大全大全(经典珍藏版)资源截图: 资源太大,传百度网盘了,链接在附件中,有需要的同学自取。

    sql常用语句以及函数

    ### SQL 常用语句及函数详解 #### 一、WHERE 条件 `WHERE` 子句用于在 `SELECT` 语句中过滤记录。它定义了要选择哪些行的标准。 **示例:** ```sql SELECT 'K'||item_id FROM item WHERE item_id = '69010281106';...

    省市区地址sql语句

    中国省市区的sql语句,帮助大伙构建自己的省、市、区三级列表查询

Global site tag (gtag.js) - Google Analytics