数据库系统概论(个人笔记)(第三部分)

数据库系统概论(个人笔记)

文章目录

  • 数据库系统概论(个人笔记)
  • 3、SQL介绍
    • 3.1 SQL查询语言概述
    • 3.2 SQL数据定义
    • 3.3 SQL查询的基本查询结构
    • 3.4 其他基本操作
    • 3.5 设置操作
    • 3.6 空值
    • 3.7 聚合函数
    • 3.8 嵌套子查询
    • 3.9 数据库的修改

3、SQL介绍


3.1 SQL查询语言概述

Qveriew of The SQL Query Language


History

IBM Sequel 语言是在 IBM 圣何塞研究实验室开发的 System R 项目的一部分。

重命名为结构化查询语言(SQL)

ANSI 和 ISO 标准 SQL:

  • SQL数据库
  • SQL-89
  • SQL-92
  • SQL:1999(语言名称符合2000年要求!)
  • SQL数据库:2003年

商业系统提供了大部分(如果不是全部的话)SQL-92特性,以及来自后来标准的各种特性集和特殊的专有特性。

  • 并非这里的所有示例都适用于您的特定系统。

SQL Parts

DDL 数据库定义语言——提供用于定义关系模式、删除关系和修改关系式的命令。

DML数据操作语言——提供从数据库查询信息、向数据库中插入元组、从数据库中删除元组以及修改元组的能力。

Integrity 完整性——DDL包括用于指定完整性约束的命令。

View definition 视图定义——DDL包括用于定义视图的命令。

Transaction control 事务控制——包括指定事务的开始和结束的命令。

Embedded SQL and dynamic SQL 嵌入式SQL和动态SQL——定义如何将SQL语句嵌入到通用编程语言中。

Authorization 授权——包括用于指定对关系与视图得访问权限得命令。


3.2 SQL数据定义

SQL Data Definition


Data Definition Language

SQL 数据定义语言(DDL)允许指定有关关系的信息,包括:

  • 每个关系的模式。
  • 与每个属性相关联的值的类型。
  • 完整性约束
  • 要为每个关系维护的索引集。
  • 每个关系的安全性和授权信息。
  • 每个关系在磁盘上的物理存储结构。

Domain Types in SQL

SQL中的域类型
char(n).固定长度的字符串,用户指定长度为n
varchar(n).可变长度字符串,具有用户指定的最大长度n
int.整数(与机器相关的整数的有限子集)
smallint.小整数(依赖于计算机的整数域类型的子集)
numeric(p,d).定点数,用户指定精度为p位数,小数点右侧为d位数。(例如,数字(3,1)允许44.5精确地存储,但不允许444.5或0.32)
real, double precision.浮点数和双精度浮点数,具有与机器相关的精度
float(n).浮点数,用户指定的精度至少为n位
更多内容将在第四章介绍

Create Table Construct

SQL关系是使用 create table 命令定义的:

在这里插入图片描述


Integrity Constraints in Create Table

完整性约束的类型

在这里插入图片描述

SQL阻止任何违反完整性约束的数据库更新。

在这里插入图片描述


And a Few More Relation Definitions

在这里插入图片描述


And more still

在这里插入图片描述


Updates to tables

Insert

insert into instructor values('10211', 'Smith', 'Biology', 66000);

Delete

  • 移除 student 关系里的所有元组
delete from student  

Drop Table

drop table r

Alter

  • alter table r add A D
    
    • 其中A是要添加到关系r中的属性的名称,D是A的域。
    • 关系中所有现有的元组都被指定为null作为新属性的值。
  • alter table r drop A
    
    • 其中A是关系r的属性名
    • 删除许多数据库不支持的属性。

3.3 SQL查询的基本查询结构

Basic Query Struction of SQL Queries


Basic Query Structure

一个典型的SQL查询有这样的表单:

在这里插入图片描述

等价于关系代数表达式:
∏ A 1 , A 2 , … , A n ( σ P ( r 1 × r 2 × … × r m ) ) ∏_{A_1,A_2,…, A_n}(σ_P(r_1× r_2×…×r_m)) A1,A2,,An(σP(r1×r2××rm))
SQL查询的结果是一个关系。


The select Clause

select 子句列出查询结果中所需的属性

  • 对应于关系代数的投影运算

Example:查找所有 instructors 的名字:

select name from instructor

NOTE:SQL名称不区分大小写(即,您可以使用大写字母或小写字母)

  • 例如,Name ≡ NAME ≡ name
  • 有些人在我们用粗体的地方用大写(上面的紫色字体)。

SQL 允许关系和查询结果中的重复。

若要强制删除重复项,请在 select 后插入关键字 distinct

查找所有 instructors 的 department names,并删除重复的名称:

select distinct dept_name from instructor

关键字 all 指定不应删除重复项:

select all dept_name from instructor

select 子句中的星号 asterisk 表示“所有属性”:

select * from instructor

属性可以是不带 from 子句的文字:

select '437'
  • Results是一个包含一列和一行值为“437”的表。

  • 可以给列一个名称,使用:

  • select '437' as FOO
    

属性可以是**带有 from **子句的文字:

select 'A' from instructor
  • 结果是一个包含一列和N行(instructors 表中的元组数量)的表,每行的值为“A”。

select 子句可以包含算术表达式,包括操作+、-、*和/,以及对元组的常量或属性进行操作:

select ID,name,salary/12 from instructor
  • 查询将返回一个与教员关系相同的关系,只是属性salary的值除以12。

  • 可以使用as子句重命名“salary/12”:

  • select ID,name,salary/12 as monthly_salary
    

The where Clause

where 子句指定结果必须满足的条件

  • 对应于关系代数的选择谓词。

为了寻找 Comp.Sci.dept 里所有的 instructors:

select name from instructor where dept_name = 'Comp.Sci.'

SQL 允许使用逻辑连接词andornot

逻辑连接符的操作数可以是包含比较操作符<、<=、>、>=、=和<>的表达式

比较可以应用于算术表达式的结果

为了寻找 Comp.Sci.dept 里且 salary > 70000 所有的 instructors:

select name from instructor where dept_name = 'Comp.Sci.' and salary > 70000

The from Clause

from 子句列出查询中涉及的关系

  • 对应于关系代数中的笛卡尔积运算。

寻找 instructor × teaches 的所有的笛卡尔积:

select * from instructor, teaches
  • 生成所有可能的教师-教学对,并包含双方关系的所有属性。
  • 对于公共属性(例如,ID),结果表中的属性使用关系名称(例如,instructor.ID)进行重命名。

笛卡尔积不是很直接有用,但与where子句条件(关系代数中的选择操作)结合使用很有用。


Examples

查找教过某门课程的所有教员的姓名和course_id

  • select name, course_id from instructor, teaches where instructor.ID = teaches.ID
    

查找艺术系所有教过某门课程的教师的姓名和course_id

  • select name, course_id 
    from instructor, teaches 
    where instructor.ID = teaches.ID and instructor.dept_name = 'Art'
    

3.4 其他基本操作

Additional Basic Operations


The Rename Operation

SQL允许使用 as 子句重命名关系和属性:

old-name as new-name

在“Comp. Sci”中找到所有薪水比某个教员高的教员的名字:

  • select distinct T.name 
    from instructor as T, instructor as S 
    where T.salary > S.salary and S.dept_name = 'Comp.Sci.'
    

关键字 as 是可选的,可以省略:

instructor as T ≡ instructor T

String Operations

SQL包含一个字符串匹配运算符,用于对字符串进行比较。操作符 like 使用使用两个特殊字符描述的模式:

  • 百分比(%) %字符匹配任何子字符串。
  • 下划线( _ ) _ 字符匹配任何字符。

查找名称中包含子字符串“dar”的所有教员的名称:

  • select name from instructor where name like '%dar%'
    

匹配字符串" 100% ":

like '100\%' escape '\'

在上面的代码中,我们使用反斜杠(\)作为转义字符。

模式区分大小写。

模式匹配示例:

  • 'Intro%'匹配任何以’Intro '开头的字符串。
  • '%Comp%'匹配任何包含" Comp "作为子字符串的字符串。
  • ‘_ _ _’ 匹配任何恰好三个字符的字符串。
  • '_ _ _ %'匹配任何至少三个字符的字符串。

SQL支持各种字符串操作,例如:

  • 串联(使用" || ")
  • 从大写到小写的转换(反之亦然)
  • 查找字符串长度,提取子字符串等

Ordering the Display of Tuples

请按字母顺序列出所有教员的姓名:

select distinct name from instructor order by name

我们可以为每个属性指定 desc 表示降序,asc 表示升序;升序是默认的:

  • Example:

    order by name desc
    

可以对多个属性进行排序:

  • Example:

    order by dept_name, name
    

Where Clause Predicates

SQL包含一个 between 比较操作符

Example:查找工资在$90,000到$100,000(即,≥$90,000 和 ≤$100,000)之间的所有教师的姓名:

  • select name from instructor where salary between 90000 and 100000
    

元组比较

  • select name, course_id 
    from instructor, teaches 
    where (instructor.ID, dept_name) = (teaches.ID, 'Biology')
    

3.5 设置操作

Set Operations

查找2017年秋季2018年春季的课程:

(select course_id  from section where sem = 'Fall' and year = 2017)
union
(select course_id  from section where sem = 'Spring' and year = 2018)

查找2017年秋季2018年春季的课程:

(select course_id  from section where sem = 'Fall' and year = 2017)
intersect
(select course_id  from section where sem = 'Spring' and year = 2018)

查找2017年秋季而不是2018年春季的课程:

(select course_id  from section where sem = 'Fall' and year = 2017)
except
(select course_id  from section where sem = 'Spring' and year = 2018)

设置操作 union, intersectexcept

  • 上述每个操作都会自动消除重复项

要保留所有副本,请使用:

  • union all
  • intersect all
  • except all

假设一个元组在 r 中出现 m 次,在 s 中出现 n 次,那么,它出现:

  • m + n times in r union all s
  • min(m, n) times in r intersect all s
  • max(0, m – n) times in r except all s

3.6 空值

Null Values

元组的某些属性可能有一个空值,用 null 表示

null 表示未知值或值不存在

任何涉及 null 的算术表达式的结果都是 null

  • Example:

    5 + null  returns null
    

谓词 is null 可用于检查空值

  • Example:

    select name from instructor where salary is null
    

如果应用谓词的值 is not null ,则谓词不为空成功。

SQL将任何涉及空值的比较的结果视为 unknown(谓词为空和非空除外)。

  • Example:

    5 < null   or   null <> null    or    null = null
    

where 子句中的谓词可以涉及布尔操作(and, or, not);因此,布尔运算的定义需要扩展以处理 unknown

  • and

    (true and unknown) = unknown, 
    (false and unknown) = false,
    (unknown and unknown) = unknown
    
  • or

    (unknown or true) = true,
    (unknown or false) = unknown
    (unknown or unknown) = unknown
    

如果 where 子句谓词的计算结果为 unknown,则将其结果视为 false


3.7 聚合函数

Aggregate Functions

这些函数对关系列的多值集进行操作,并返回一个值

avg平均值
min最小值
max最大值
sum值求和
count值数量

Aggregate Functions Examples

找出计算机科学系讲师的平均工资:

  • select avg (salary) from instructor where dept_name= 'Comp. Sci.'
    

查找在2018年春季学期教授某门课程的教师总数:

  • select count (distinct ID) from teaches where semester = 'Spring' and year = 2018
    

求课程关系中元组的个数:

  • select count (*) from course;
    

Aggregate Functions – Group By

求出各部门教员的平均工资:

  • select dept_name, avg (salary) as avg_salary from instructor group by dept_name
    

在这里插入图片描述

聚合函数之外的 select 子句中的属性必须出现在 group by 列表中:

  • /* erroneous query */
    select dept_name, ID, avg (salary) from instructor group by dept_name
    

Aggregate Functions – Having Clause

查找平均工资大于42000的所有部门的名称和平均工资:

select dept_name, avg (salary) as avg_salary 
from instructor group by dept_name having avg (salary) > 42000

Note:having 子句中的谓词在组形成之后应用,而 where 子句中的谓词在组形成之前应用


3.8 嵌套子查询

Nested Subqueries

Nested 嵌套

SQL 为子查询的嵌套提供了一种机制。子查询 A subquery 是嵌套在另一个查询中的 “select-from-where” 表达式。

嵌套可以在以下 SQL 查询中完成:

select A1, A2, ..., An from r1, r2, ..., rm where P

as follows:

  • From clause:ri 可以被任何有效的子查询替换。

  • Where clause:P 可以用如下形式的表达式代替:

    B (subquery)

    B是稍后定义的属性和。

  • Select clause:

    Ai 可以替换为生成单个值的子查询。


Set Membership

查找2017年秋季和2018年春季提供的课程:

select distinct course_id
from section
where semester = 'Fall' and year= 2017 and
      course_id in (select course_id
                    from section
                    where semester = 'Spring' and year= 2018)

查找2017年秋季但不是2018年春季提供的课程:

select distinct course_id
from section
where semester = 'Fall' and year= 2017 and
      course_id not in (select course_id
                    from section
                    where semester = 'Spring' and year= 2018)

说出所有既不是 “Mozart” 也不是 “Einstein” 的老师的名字:

select distinct name
from instructor
where  name not in ('Mozart', 'Einstein')

查找由 ID 为10101的讲师讲授的课程部分的(不同的)学生总数:

select count (distinct ID)
from takes
where (course_id, sec_id, semester, year) in             
				(select course_id, sec_id, semester, year
				from teaches
                where teaches.ID= 10101);

Note:上面的查询可以用更简单的方式编写。上面的公式只是为了说明 SQL 的特性


Set Comparison


Set Comparison – “some” Clause

找出工资高于生物系某些(至少一个)教师的姓名:

select distinct T.name
from instructor as T, instructor as S
where T.salary > S.salary and S.dept name = 'Biology'

相同的查询使用> some子句:

select name
from instructor
where salary > some (select salary
					from instructor
					where dept name = 'Biology')

Definition of “some” Clause

在这里插入图片描述


Set Comparison – “all” Clause

查找工资高于生物系所有教师工资的所有教师的姓名:

select name
from instructor
where salary > all (select salary
					from instructor
					where dept name = 'Biology')

Definition of “all” Clause

在这里插入图片描述


Test for Empty Relations

如果参数子查询非空,exists 构造返回值 true

在这里插入图片描述


Use of “exists” Clause

这是指定查询“查找2017年秋季学期和2018年春季学期教授的所有课程”的另一种方式:

select course_id 
from section as S 
where semester = 'Fall' and year = 2017 and
		exists (select * 
                from section as T 
                where semester = 'Spring' and year= 2018 
                		and S.course_id = T.course_id)

关联名称 Correlation name ——外部查询中的变量 S

相关子查询 Correlated subquery ——内部查询

select distinct course_id
from section
where semester = 'Fall' and year= 2017 and 
		course_id in (select course_id
                      from section
                      where semester = 'Spring' and year= 2018)

Use of “not exists” Clause

找到所有修过生物系所有课程的学生:

select distinct S.ID, S.name
from student as S
where not exists ( (select course_id
                    from course
                    where dept_name = 'Biology')
                  except
                  (select T.course_id
                   from takes as T
                   where S.ID = T.ID))
  • 第一个嵌套查询列出了生物学提供的所有课程
  • 第二个嵌套查询列出了特定学生所修的所有课程

在这里插入图片描述


Test for Absence of Duplicate Tuples

unique 构造测试子查询的结果中是否有任何重复元组。

如果给定的子查询不包含重复项,则 unique 构造的计算结果为“true”。

查找2017年最多开设一次的所有课程:

select T.course_id 
from course as T 
where unique (select R.course_id
              from section as R 
              where T.course_id= R.course_id 
              		and R.year = 2017)


Subqueries in the From Clause

SQL 允许在 from 子句中使用子查询表达式

找出那些平均工资超过4.2万美元的院系教师的平均工资:

select dept_name, avg_salary
from ( select dept_name, avg (salary) as avg_salary 
      from instructor 
      group by dept_name) 
where avg_salary > 42000

注意,我们不需要使用 having 从句

上述查询的另一种写法:

select dept_name, avg_salary
from (select dept_name, avg (salary) 
      from instructor 
      group by dept_name)
      as dept_avg (dept_name, avg_salary) 
where avg_salary > 42000

With Clause

with 子句提供了一种定义临时关系的方法,该临时关系的定义仅对出现 with 子句的查询可用。

找到所有有最大预算的部门:

with max_budget (value) as 
	(select max(budget) 
     from department) 
select department.name 
from department, max_budget 
where department.budget = max_budget.value;

Complex Queries using With Clause

找出总工资大于所有部门总工资平均值的所有部门:

with dept _total (dept_name, value) as
        (select dept_name, sum(salary)
         from instructor
         group by dept_name),
dept_total_avg(value) as
       (select avg(value)
       from dept_total)
select dept_name
from dept_total, dept_total_avg
where dept_total.value > dept_total_avg.value

Scalar Subquery

标量 Scalar 子查询是在需要单个值的地方使用的查询

列出所有部门以及每个部门的教师人数:

select dept_name, 
	(select count(*) 
     from instructor 
     where department.dept_name = instructor.dept_name) 
    as num_instructors
from department

如果子查询返回多个结果元组,则运行时错误


3.9 数据库的修改

Modification of the Database

  • 从给定关系中删除元组
  • 在给定的关系中插入新的元组
  • 更新给定关系中某些元组中的值

Deletion

删除所有教员

delete from instructor

删除财务部门的所有教员

delete from instructor where dept_name = 'Finance'

删除教员关系中与Watson大楼中某个部门相关联的教员的所有元组

delete from instructor
where dept_name in (select dept_name
                    from department
                    where building = 'Watson')

删除所有工资低于教员平均工资的教员

delete from instructor
where salary < (select avg (salary) 
                from instructor)
  • Problem:当我们从教员中删除元组时,平均工资发生了变化
  • SQL中使用的解决方案:
    • 首先,计算 avg (salary)并找到所有要删除的元组
    • 接下来,删除上面找到的所有元组(不重新计算 avg 或重新测试元组)

Insertion

向course添加一个新的元组

insert into course values ('CS-437', 'Database Systems', 'Comp. Sci.', 4)

或者同样的

insert into course (course_id, title, dept_name, credits) 
values ('CS-437', 'Database Systems', 'Comp. Sci.', 4)

添加一个新的元组到student, tot_creds设置为null

insert into student values ('3003', 'Green', 'Finance', null)

让每个获得超过144个学分的音乐系学生成为音乐系讲师,年薪18000美元

insert into instructor 
	select ID, name, dept_name, 18000 
	from student 
	where dept_name = 'Music' and total_cred > 144

在将 select from where 语句的任何结果插入到关系中之前,将对其进行完全求值。

否则,如下的查询将导致问题:

insert into table1 select * from table1

Updates

给所有教员加薪5%

update instructor set salary = salary * 1.05

对收入低于7万的指导员加薪5%

update instructor set salary = salary * 1.05 where salary < 70000

对工资低于平均水平的指导员,给予5%的加薪

update instructor 
set salary = salary * 1.05
where salary <  (select avg (salary)
                 from instructor)

对年薪超过10万美元的教员加薪3%,其他教员加薪5%

  • 写两个 update 语句:

    update instructor set salary = salary * 1.03 where salary > 100000
    update instructor set salary = salary * 1.05 where salary <= 100000
    
  • 顺序很重要

  • case 语句可以做得更好(如下)


Case Statement for Conditional Updates

与之前相同的查询,但使用case语句

update instructor
	set salary = case
		when salary <= 100000 then salary * 1.05
		else salary * 1.03
		end

Updates with Scalar Subqueries

重新计算并更新所有学生的tot_creds值

update student S 
set tot_cred = (select sum(credits)
                from takes, course
                where takes.course_id = course.course_id  and
                	S.ID= takes.ID.and
                takes.grade <> 'F' and
                takes.grade is not null)

对于没有上过任何课程的学生,将tot_creds设置为null

代替 sum(credits),使用:

case
	when sum(credits) is not null then sum(credits)
	else 0
end

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/653229.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

sklearn监督学习--k近邻算法

sklearn监督学习 一、分类与回归二、泛化、过拟合与欠拟合三、k近邻算法四、分析KNeighborsClassifier五、k近邻算法用于回归优点、缺点和参数 一、分类与回归 监督学习是最常用也是最成功的机器学习类型之一。监督机器学习问题主要有两种&#xff0c;分别叫做分类与回归。分类…

金蝶云星空与旺店通·企业版对接集成采购入库查询打通创建采购入库单

金蝶云星空与旺店通企业版对接集成采购入库查询打通创建采购入库单 数据源系统:金蝶云星空 金蝶K/3Cloud&#xff08;金蝶云星空&#xff09;是移动互联网时代的新型ERP&#xff0c;是基于WEB2.0与云技术的新时代企业管理服务平台。金蝶K/3Cloud围绕着“生态、人人、体验”&…

没人愿意和我们最好的工程师一起工作

几年前&#xff0c;有一位魔术般厉害的工程师&#xff08;我们叫他“乔恩”&#xff09;为我工作。他的代码写得很好&#xff0c;代码审查&#xff08;PRs&#xff09;也完成得很快。从技术角度来看&#xff0c;他是个出色的工程师。 我们从其他工程师那里得到了一些关于他的普…

IDEA通过tomcat运行注意事项

配置run--》edit configurations 以下的A B部分要保持一致 A和B的路径要保持一致

在线封装APP:轻松实现个性化应用发布

你是否曾经因为无法快速封装和发布自己的APP而感到困扰&#xff1f;传统的APP封装和发布流程繁琐&#xff0c;需要耗费大量时间和精力。幸运的是&#xff0c;现在有了在线封装APP的解决方案&#xff0c;帮你轻松搞定这些麻烦事。 小猪APP封装平台www.appzhu.cn 什么是在线封装…

【乐吾乐3D可视化组态编辑器】相机与视角

系统默认的相机为环绕旋转相机&#xff0c;它可以环绕一个中心点做上下左右的旋转&#xff0c;来从不同角度观察场景。当然&#xff0c;您也可以把一些特定角度的信息保存下来&#xff0c;在系统中我们把这个信息称作视角。通过交互中的切换视角动作&#xff0c;您就可以实现把…

​你见过哪些不过度设计的优秀APP?​

优联前端https://ufrontend.com/ 提供一站式企业前端解决方案 “每日故宫”是一款以故宫博物院丰富的藏品为基础&#xff0c;结合日历形式展示每日精选藏品的移动应用。通过这款应用&#xff0c;用户可以随时随地欣赏到故宫的珍贵藏品&#xff0c;感受中华五千年文化的魅力。…

基于Python和MD5算法的公寓管理系统设计与实现-计算机毕业设计源码77723

摘 要 本论文主要论述了如何使用Python开发一个公寓管理系统&#xff0c;本系统将严格按照软件开发流程进行各个阶段的工作&#xff0c;面向对象编程思想进行项目开发。在引言中&#xff0c;作者将论述公寓管理系统的当前背景以及系统开发的目的&#xff0c;后续章节将严格按照…

一文详解SpringBoot的自定义starter

目录 一、SpringBoot 二、自定义starter 三、SpringBoot的自定义starter 一、SpringBoot Spring Boot是一个开源的Java框架&#xff0c;由Pivotal团队&#xff08;现为VMware的一部分&#xff09;于2013年推出&#xff0c;旨在简化Spring应用程序的创建和部署过程。它基于S…

基于混合Transformer-CNN模型的多分辨率学习方法的解剖学标志检测

文章目录 Anatomical Landmark Detection Using a Multiresolution Learning Approach with a Hybrid Transformer-CNN Model摘要方法实验结果 Anatomical Landmark Detection Using a Multiresolution Learning Approach with a Hybrid Transformer-CNN Model 摘要 精确定位…

【MySQL数据库】存储过程实战——图书借阅系统

图书借阅归还 借阅不用count判断&#xff0c;归还不用具体字段值判断 每次借阅或者归还只能操作1本 数据准备 -- 创建数据库 create database db_test3 CHARACTER SET utf8 COLLATE utf8_general_ci; -- 使用数据库 use db_test3; -- 创建图书信息表&#xff1a; create tabl…

Git学习篇

目录 使用命令导入项目 使用命令导入项目 1. 使用git init 命令初始化一个新的Git仓库。 git init 是 Git 命令&#xff0c;用于初始化一个新的 Git 仓库。当您想要开始跟踪一个新项目的版本控制时&#xff0c;可以运行 git init 命令来初始化一个空的 Git 仓库。 如果出现以下…

低代码与人工智能:革新智能客服系统的高效之道

引言 在当前数字化和智能化浪潮的推动下&#xff0c;企业对智能客服系统的需求呈现显著增长。随着客户期望的不断提升&#xff0c;企业需要更加高效、智能和个性化的客户服务解决方案。传统的人工客服方式不仅成本高昂&#xff0c;且难以满足大规模、多样化的客户需求。而智能客…

2024年【N1叉车司机】免费试题及N1叉车司机试题及解析

题库来源&#xff1a;安全生产模拟考试一点通公众号小程序 N1叉车司机免费试题根据新N1叉车司机考试大纲要求&#xff0c;安全生产模拟考试一点通将N1叉车司机模拟考试试题进行汇编&#xff0c;组成一套N1叉车司机全真模拟考试试题&#xff0c;学员可通过N1叉车司机试题及解析…

【JavaScript】P1 JavaScript 是什么、其组成

1.1 JavaScript 是什么 JavaScript 是一种运行在浏览器的编程语言&#xff0c;用于实现人机交互效果。其作用包含&#xff1a; 监听用户行为并指导网页做出反馈。针对表单数据进行合法性验证。获取后台数据&#xff0c;渲染到前端界面。服务器编程&#xff0c;最后端的事情&a…

读后感:《SQL数据分析实战》运营SQL实用手册

学习SQL&#xff0c;先有用起来&#xff0c;有了使用价值&#xff0c;之后才是去了解它的原理&#xff0c;让使用更加顺畅。 在大部分业务场景中&#xff0c;通过SQL可以快速的实现数据处理与统计。《SQL数据分析实战》区别于其他工具书&#xff0c;它并没有介绍SQL是什么&…

机会就在眼前!2025-CISP深圳国际体育展的招展工作火热持续中...

2025-CISP中国&#xff08;深圳&#xff09;国际体育展的招展工作火热持续中&#xff0c;凭借越来越深远的影响力以及前两届的成功举办经验&#xff0c;展位多半已被“抢购”。但小编的同事们同时又反映出一个问题&#xff1a;有一批老展商和新展商已有明确的参展意向&#xff…

重生奇迹MU剑士两把单手剑

重生奇迹mu觉醒剑士在武器的选择上非常广泛&#xff0c;可以单手操作也可以双手&#xff0c;那么许多玩家觉得单手剑特别帅气&#xff0c;能否装备两个单手剑&#xff0c;感兴趣的玩家一起来看看详情介绍。 单手剑是一个单手武器&#xff0c;你可以选择装备一个单手剑&#xf…

数字信封:保护数据传输的现代安全机制

在数字化时代&#xff0c;数据安全和隐私保护变得尤为重要。随着网络攻击和数据泄露事件的日益增多&#xff0c;传统的加密方法已经难以满足日益增长的安全需求。数字信封&#xff08;Digital Envelope&#xff09;作为一种有效的数据保护技术&#xff0c;提供了一种安全的数据…

3W 1.5KVDC、3KVDC 隔离,宽电压输入 DC/DC 电源模块——TP03DA 系列

TP03DA系列电源模块额定输出功率为3W&#xff0c;外形尺寸为31.75*20.32*10.65&#xff0c;应用于2:1及4:1宽电压输入范围 4.5-9V、9V-18V、18V-36V、36V-72V、9V-36V和18-72VDC的输入电压环境&#xff0c;输出电压精度可达1%&#xff0c;具有输出短路保护等功能&#xff0c;可…