mysql 练习3

数据表介绍

--1.学生表
Student(SId,Sname,Sage,Ssex)
--SId 学生编号,Sname 学生姓名,Sage 出生年月,Ssex 学生性别

--2.课程表
Course(CId,Cname,TId)
--CId 课程编号,Cname 课程名称,TId 教师编号

--3.教师表
Teacher(TId,Tname)
--TId 教师编号,Tname 教师姓名

--4.成绩表
SC(SId,CId,score)
--SId 学生编号,CId 课程编号,score 分数

学生表 Student

create table Student(SId varchar(10),Sname varchar(10),Sage datetime,Ssex varchar(10));insert into Student values('01' , '赵雷' , '1990-01-01' , '男');insert into Student values('02' , '钱电' , '1990-12-21' , '男');insert into Student values('03' , '孙风' , '1990-12-20' , '男');insert into Student values('04' , '李云' , '1990-12-06' , '男');insert into Student values('05' , '周梅' , '1991-12-01' , '女');insert into Student values('06' , '吴兰' , '1992-01-01' , '女');insert into Student values('07' , '郑竹' , '1989-01-01' , '女');insert into Student values('09' , '张三' , '2017-12-20' , '女');insert into Student values('10' , '李四' , '2017-12-25' , '女');insert into Student values('11' , '李四' , '2012-06-06' , '女');insert into Student values('12' , '赵六' , '2013-06-13' , '女');insert into Student values('13' , '孙七' , '2014-06-01' , '女');

科目表 Course

create table Course(CId varchar(10),Cname nvarchar(10),TId varchar(10));insert into Course values('01' , '语文' , '02');insert into Course values('02' , '数学' , '01');insert into Course values('03' , '英语' , '03');

教师表 Teacher

create table Teacher(TId varchar(10),Tname varchar(10));insert into Teacher values('01' , '张三');insert into Teacher values('02' , '李四');insert into Teacher values('03' , '王五');

成绩表 SC

create table SC(SId varchar(10),CId varchar(10),score decimal(18,1));insert into SC values('01' , '01' , 80);insert into SC values('01' , '02' , 90);insert into SC values('01' , '03' , 99);insert into SC values('02' , '01' , 70);insert into SC values('02' , '02' , 60);insert into SC values('02' , '03' , 80);insert into SC values('03' , '01' , 80);insert into SC values('03' , '02' , 80);insert into SC values('03' , '03' , 80);insert into SC values('04' , '01' , 50);insert into SC values('04' , '02' , 30);insert into SC values('04' , '03' , 20);insert into SC values('05' , '01' , 76);insert into SC values('05' , '02' , 87);insert into SC values('06' , '01' , 31);insert into SC values('06' , '03' , 34);insert into SC values('07' , '02' , 89);insert into SC values('07' , '03' , 98);


练习题目

1.查询" 01 "课程比" 02 "课程成绩高的学生的信息及课程分数
 

select * from Student RIGHT JOIN (select t1.SId, class1, class2 from(select SId, score as class1 from sc where sc.CId = '01')as t1,(select SId, score as class2 from sc where sc.CId = '02')as t2where t1.SId = t2.SId AND t1.class1 > t2.class2)ron Student.SId = r.SId;select * from  (select t1.SId, class1, class2from(SELECT SId, score as class1 FROM sc WHERE sc.CId = '01') AS t1,(SELECT SId, score as class2 FROM sc WHERE sc.CId = '02') AS t2where t1.SId = t2.SId and t1.class1 > t2.class2) rLEFT JOIN StudentON Student.SId = r.SId;1.1 查询同时存在" 01 "课程和" 02 "课程的情况select * from(select * from sc where sc.CId = '01') as t1,(select * from sc where sc.CId = '02') as t2where t1.SId = t2.SId;

1.2 查询存在" 01 "课程但可能不存在" 02 "课程的情况(不存在时显示为 null )
 

select * from(select * from sc where sc.CId = '01') as t1left join(select * from sc where sc.CId = '02') as t2on t1.SId = t2.SId;select * from(select * from sc where sc.CId = '02') as t2right join(select * from sc where sc.CId = '01') as t1on t1.SId = t2.SId;

1.3 查询不存在" 01 "课程但存在" 02 "课程的情况

select * from scwhere sc.SId not in (select SId from scwhere sc.CId = '01')AND sc.CId= '02';
  1. 查询平均成绩大于等于 60 分的同学的学生编号和学生姓名和平均成绩
    这里只用根据学生ID把成绩分组,对分组中的score求平均值,最后在选取结果中AVG大于60的即可. 
select student.SId,sname,ss from student,(select SId, AVG(score) as ss from sc  GROUP BY SIdHAVING AVG(score)> 60)rwhere student.sid = r.sid;select Student.SId, Student.Sname, r.ss from Student right join(select SId, AVG(score) AS ss from scGROUP BY SIdHAVING AVG(score)> 60)r on Student.SId = r.SId;select s.SId,ss,Sname from(select SId, AVG(score) as ss from sc  GROUP BY SIdHAVING AVG(score)> 60)r left join(select Student.SId, Student.Sname fromStudent)s on s.SId = r.SId;
  1. 查询在 SC 表存在成绩的学生信息
select DISTINCT student.*from student,scwhere student.SId=sc.SId

4.查询所有同学的学生编号、学生姓名、选课总数、所有课程的成绩总和
联合查询不会显示没选课的学生:

select student.sid, student.sname,r.coursenumber,r.scoresumfrom student,(select sc.sid, sum(sc.score) as scoresum, count(sc.cid) as coursenumber from scgroup by sc.sid)rwhere student.sid = r.sid;

如要显示没选课的学生(显示为NULL),需要使用join:

select s.sid, s.sname,r.coursenumber,r.scoresumfrom ((select student.sid,student.snamefrom student)sleft join(selectsc.sid, sum(sc.score) as scoresum, count(sc.cid) as coursenumberfrom scgroup by sc.sid)ron s.sid = r.sid);

4.2 查有成绩的学生信息
这一题涉及到in和exists的用法,在这种小表中,两种方法的效率都差不多,但是请参考SQL查询中in和exists的区别分析
当表2的记录数量非常大的时候,选用exists比in要高效很多.
EXISTS用于检查子查询是否至少会返回一行数据,该子查询实际上并不返回任何数据,而是返回值True或False.
结论:IN()适合B表比A表数据小的情况
结论:EXISTS()适合B表比A表数据大的情况

select * from studentwhere exists (select sc.sid from sc where student.sid = sc.sid);select * from studentwhere student.sid in (select sc.sid from sc);
  1. 查询「李」姓老师的数量
select count(*)from teacherwhere tname like '李%';
  1. 查询学过「张三」老师授课的同学的信息
    多表联合查询
select student.* from student,teacher,course,scwherestudent.sid = sc.sidand course.cid=sc.cidand course.tid = teacher.tidand tname = '张三';
  1. 查询没有学全所有课程的同学的信息
    因为有学生什么课都没有选,反向思考,先查询选了所有课的学生,再选择这些人之外的学生.
select * from studentwhere student.sid not in (select sc.sid from scgroup by sc.sidhaving count(sc.cid)= (select count(cid) from course));
  1. 查询至少有一门课与学号为" 01 "的同学所学相同的同学的信息
     
select * from studentwhere student.sid in (select sc.sid from scwhere sc.cid in(select sc.cid from scwhere sc.sid = '01'));

10.查询没学过"张三"老师讲授的任一门课程的学生姓名
仍然还是嵌套,三层嵌套, 或者多表联合查询

select * from studentwhere student.sid not in(select sc.sid from sc where sc.cid in(select course.cid from course where course.tid in(select teacher.tid from teacher where tname = "张三")));select * from studentwhere student.sid not in(select sc.sid from sc,course,teacherwheresc.cid = course.cidand course.tid = teacher.tidand teacher.tname= "张三");

11.查询两门及其以上不及格课程的同学的学号,姓名及其平均成绩
 

select student.SId, student.Sname,b.avgfrom student RIGHT JOIN(select sid, AVG(score) as avg from scwhere sid in (select sid from scwhere score<60GROUP BY sidHAVING count(score)>1)GROUP BY sid) b on student.sid=b.sid;
  1. 检索" 01 "课程分数小于 60,按分数降序排列的学生信息
    双表联合查询,在查询最后可以设置排序方式,语法为ORDER BY ***** DESC\ASC;
select student.*, sc.score from student, scwhere student.sid = sc.sidand sc.score < 60and cid = "01"ORDER BY sc.score DESC;
  1. 按平均成绩从高到低显示所有学生的所有课程的成绩以及平均成绩
select *  from scleft join (select sid,avg(score) as avscore from scgroup by sid)ron sc.sid = r.sidorder by avscore desc;
  1. 查询各科成绩最高分、最低分和平均分:

以如下形式显示:课程 ID,课程 name,最高分,最低分,平均分,及格率,中等率,优良率,优秀率

及格为>=60,中等为:70-80,优良为:80-90,优秀为:>=90

要求输出课程号和选修人数,查询结果按人数降序排列,若人数相同,按课程号升序排列

selectsc.CId ,max(sc.score)as 最高分,min(sc.score)as 最低分,AVG(sc.score)as 平均分,count(*)as 选修人数,sum(case when sc.score>=60 then 1 else 0 end )/count(*)as 及格率,sum(case when sc.score>=70 and sc.score<80 then 1 else 0 end )/count(*)as 中等率,sum(case when sc.score>=80 and sc.score<90 then 1 else 0 end )/count(*)as 优良率,sum(case when sc.score>=90 then 1 else 0 end )/count(*)as 优秀率from scGROUP BY sc.CIdORDER BY count(*)DESC, sc.CId ASC
  1. 按各科成绩进行排序,并显示排名, Score 重复时保留名次空缺
     
select a.cid, a.sid, a.score, count(b.score)+1 as rankfrom sc as aleft join sc as bon a.score<b.score and a.cid = b.cidgroup by a.cid, a.sid,a.scoreorder by a.cid, rank ASC;
  1. 查询学生的总成绩,并进行排名,总分重复时不保留名次空缺
    这里主要学习一下使用变量。在SQL里面变量用@来标识。
set @crank=0;select q.sid, total, @crank := @crank +1 as rank from(select sc.sid, sum(sc.score) as total from scgroup by sc.sidorder by total desc)q;
  1. 统计各科成绩各分数段人数:课程编号,课程名称,[100-85],[85-70],[70-60],[60-0] 及所占百分比
     
select course.cname, course.cid,sum(case when sc.score<=100 and sc.score>85 then 1 else 0 end) as "[100-85]",sum(case when sc.score<=85 and sc.score>70 then 1 else 0 end) as "[85-70]",sum(case when sc.score<=70 and sc.score>60 then 1 else 0 end) as "[70-60]",sum(case when sc.score<=60 and sc.score>0 then 1 else 0 end) as "[60-0]"from sc left join courseon sc.cid = course.cidgroup by sc.cid;
  1. 查询各科成绩前三名的记录
     
select * from scwhere (select count(*) from sc as awhere sc.cid = a.cid and sc.score<a.score)< 3order by cid asc, sc.score desc;

19.查询每门课程被选修的学生数

select cid, count(sid) from scgroup by cid;

20.查询出只选修两门课程的学生学号和姓名
嵌套查询

select student.sid, student.sname from studentwhere student.sid in(select sc.sid from scgroup by sc.sidhaving count(sc.cid)=2);

联合查询

select student.SId,student.Snamefrom sc,studentwhere student.SId=sc.SId  GROUP BY sc.SIdHAVING count(*)=2;

21.查询男生、女生人数

select ssex, count(*) from studentgroup by ssex;

22.查询名字中含有「风」字的学生信息

select *from studentwhere student.Sname like '%风%'

23.查询同名学生名单,并统计同名人数
找到同名的名字并统计个数

select sname, count(*) from studentgroup by snamehaving count(*)>1;

嵌套查询列出同名的全部学生的信息

select * from studentwhere sname in (select sname from studentgroup by snamehaving count(*)>1);

24.查询 1990 年出生的学生名单

select *from studentwhere YEAR(student.Sage)=1990;

25.查询每门课程的平均成绩,结果按平均成绩降序排列,平均成绩相同时,按课程编号升序排列

select sc.cid, course.cname, AVG(SC.SCORE) as average from sc, coursewhere sc.cid = course.cidgroup by sc.cidorder by average desc,cid asc;

26.查询平均成绩大于等于 85 的所有学生的学号、姓名和平均成绩
 

select student.sid, student.sname, AVG(sc.score) as aver from student, scwhere student.sid = sc.sidgroup by sc.sidhaving aver > 85;

27.查询课程名称为「数学」,且分数低于 60 的学生姓名和分数

select student.sname, sc.score from student, sc, coursewhere student.sid = sc.sidand course.cid = sc.cidand course.cname = "数学"and sc.score < 60;

28.查询所有学生的课程及分数情况(存在学生没成绩,没选课的情况)

select student.sname, cid, score from studentleft join scon student.sid = sc.sid;

29.查询任何一门课程成绩在 70 分以上的姓名、课程名称和分数

select student.sname, course.cname,sc.score from student,course,scwhere sc.score>70and student.sid = sc.sidand sc.cid = course.cid;

30.查询存在不及格的课程
可以用group by 来取唯一,也可以用distinct

select cid from scwhere score< 60group by cid;select DISTINCT sc.CIdfrom scwhere sc.score <60;

31.查询课程编号为 01 且课程成绩在 80 分及以上的学生的学号和姓名

select student.sid,student.snamefrom student,scwhere cid="01"and score>=80and student.sid = sc.sid;

32.求每门课程的学生人数

select sc.CId,count(*) as 学生人数from scGROUP BY sc.CId;

33.成绩不重复,查询选修「张三」老师所授课程的学生中,成绩最高的学生信息及其成绩
用having max()理论上也是对的,但是下面那种按分数排序然后取limit 1的更直观可靠

select student.*, sc.score, sc.cid from student, teacher, course,scwhere teacher.tid = course.tidand sc.sid = student.sidand sc.cid = course.cidand teacher.tname = "张三"having max(sc.score);select student.*, sc.score, sc.cid from student, teacher, course,scwhere teacher.tid = course.tidand sc.sid = student.sidand sc.cid = course.cidand teacher.tname = "张三"order by score desclimit 1;

34.成绩有重复的情况下,查询选修「张三」老师所授课程的学生中,成绩最高的学生信息及其成绩
为了验证这一题,先修改原始数据

UPDATE sc SET score=90where sid = "07"and cid ="02";

这样张三老师教的02号课就有两个学生同时获得90的最高分了。
这道题的思路继续上一题,我们已经查询到了符合限定条件的最高分了,这个时候只用比较这张表,找到全部score等于这个最高分的记录就可,看起来有点繁复。

select student.*, sc.score, sc.cid from student, teacher, course,scwhere teacher.tid = course.tidand sc.sid = student.sidand sc.cid = course.cidand teacher.tname = "张三"and sc.score = (select Max(sc.score)from sc,student, teacher, coursewhere teacher.tid = course.tidand sc.sid = student.sidand sc.cid = course.cidand teacher.tname = "张三");

35.查询不同课程成绩相同的学生的学生编号、课程编号、学生成绩
同上,在这里用了inner join后会有概念是重复的记录:“01 课与 03课”=“03 课与 01 课”,所以这里取唯一可以直接用group by

select  a.cid, a.sid,  a.score from sc as ainner joinsc as bon a.sid = b.sidand a.cid != b.cidand a.score = b.scoregroup by cid, sid;

36.查询每门功成绩最好的前两名
 

select a.sid,a.cid,a.score from sc as aleft join sc as bon a.cid = b.cid and a.score<b.scoregroup by a.cid, a.sidhaving count(b.cid)<2order by a.cid;

37.统计每门课程的学生选修人数(超过 5 人的课程才统计)

select sc.cid, count(sid) as cc from scgroup by cidhaving cc >5;

38.检索至少选修两门课程的学生学号

select sid, count(cid) as cc from scgroup by sidhaving cc>=2;

39.查询选修了全部课程的学生信息

select student.*from sc ,studentwhere sc.SId=student.SIdGROUP BY sc.SIdHAVING count(*) = (select DISTINCT count(*) from course )

41. 按照出生日期来算,当前月日 < 出生年月的月日则,年龄减一

select student.SId as 学生编号,student.Sname  as  学生姓名,TIMESTAMPDIFF(YEAR,student.Sage,CURDATE()) as 学生年龄from student

42.查询本周过生日的学生

select *from studentwhere WEEKOFYEAR(student.Sage)=WEEKOFYEAR(CURDATE());

43.查询下周过生日的学生

select *from studentwhere WEEKOFYEAR(student.Sage)=WEEKOFYEAR(CURDATE())+1;

44.查询本月过生日的学生

select *from studentwhere MONTH(student.Sage)=MONTH(CURDATE());

45.查询下月过生日的学生

select *from studentwhere MONTH(student.Sage)=MONTH(CURDATE())+1;

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

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

rust 创建多线程web server

创建一个 http server&#xff0c;处理 http 请求。 创建一个单线程的 web 服务 web server 中主要的两个协议是 http 和 tcp。tcp 是底层协议&#xff0c;http 是构建在 tcp 之上的。 通过std::net库创建一个 tcp 连接的监听对象&#xff0c;监听地址为127.0.0.1:8080. us…

NEFU数字图像处理(三)图像分割

一、图像分割的基本概念 1.1专有名词 前景和背景 在图像分割中&#xff0c;我们通常需要将图像分为前景和背景两个部分。前景是指图像中我们感兴趣、要分割出来的部分&#xff0c;背景是指和前景不相关的部分。例如&#xff0c;对于一张人物照片&#xff0c;人物就是前景&…

python把ChestX-Det-Dataset的json样本转为COCO数据集的json格式

ChestX-Det-Dataset数据集网址&#xff1a;https://github.com/Deepwise-AILab/ChestX-Det-Dataset/tree/main 数据集JSON内容&#xff1a; [{"file_name": "36199.png","syms": [],"boxes": [],"polygons": []},{"f…

Hadoop学习总结(搭建Hadoop集群(伪分布式模式))

如果前面有搭建过Hadoop集群完全分布式模式&#xff0c;现在搭建Hadoop伪分布式模式可以选择直接克隆完全分布式模式中的主节点(hadoop001)。以下是在搭建过完全分布式模式下的Hadoop集群的情况进行 伪分布式模式下的Hadoop功能与完全分布式模式下的Hadoop功能相同。 一、克隆…

【Qt】QString怎么判断是否含有某个字符串

2023年10月29日&#xff0c;周日晚上 QString怎么判断是否含有某一字符串&#xff1f; 比如我想知道QString中是否含有"connectToHost error" 要判断一个 QString 是否包含特定的子字符串&#xff0c;可以使用 QString 类的 contains() 方法。 下面是使用 contain…

[Machine Learning] 领域适应和迁移学习

文章目录 领域适应核均值匹配 (Kernel Mean Matching, KMM) 迁移学习协变量偏移模型 (Covariate Shift Model)目标偏移模型 (Target Shift Model) 在机器学习中&#xff0c;我们的目标是找到一个假设或模型&#xff0c;它可以很好地描述或预测数据。当我们基于训练集训练模型时…

DAY38 动态规划 + 509. 斐波那契数 + 70. 爬楼梯 + 746. 使用最小花费爬楼梯

动态规划理论 动态规划&#xff0c;Dynamic Programming&#xff0c; DP&#xff0c; 如果某一问题有很多重叠子问题&#xff0c;使用动态规划是最有效的。 所以动态规划中每一个状态一定是由上一个状态推导出来的&#xff0c;这一点就区分于贪心&#xff0c;贪心没有状态推导…

buuctf_练[GYCTF2020]FlaskApp

[GYCTF2020]FlaskApp 文章目录 [GYCTF2020]FlaskApp常用绕过方法掌握知识解题思路解题一 -- 计算pin码解题二 -- 拼接绕过 执行命令 关键paylaod 常用绕过方法 ssti详解与例题以及绕过payload大全_ssti绕过空格_HoAd’s blog的博客-CSDN博客 CTF 对SSTI的一些总结 - FreeBuf网…

SQL注入原理及思路(mysql)

数据库知识 mysql数据库 show database; #列出所有数据库 show tables; #列出所有表名 show columns from 表名; #列出表的列 select * from 表名 #查询数据库中某表的信息 select * from 表名 where 列xx #查询某表中符合列xx的信息 select * from 表名 order by 数字 #用于将…

Spark UI中Shuffle dataSize 和shuffle bytes written 指标区别

背景 本文基于Spark 3.1.1 目前在做一些知识回顾的时候&#xff0c;发现了一些很有意思的事情&#xff0c;就是Spark UI中ShuffleExchangeExec 的dataSize和shuffle bytes written指标是不一样的&#xff0c; 那么在AQE阶段的时候&#xff0c;是以哪个指标来作为每个Task分区大…

了解单域名证书和通配符证书的区别,选择合适的SSL证书解决方案

随着互联网的不断发展&#xff0c;网站安全性问题一直备受关注&#xff0c;在保护网站数据安全的过程中&#xff0c;SSL证书一直发挥着至关重要的作用。而在选择SSL证书时&#xff0c;单域名证书和通配符证书是两种常见的选择。本文将详细介绍单域名证书和通配符证书的区别&…

多分类loss学习记录

这里简单的记录在人脸识别/声纹识别中常用的分类loss。详细原理可以参考其他博客。 扩展资料1 扩展资料2 L-softmax A-softmax AM-softmax L-softmax &#xff1a;基于softmax加入了margin&#xff0c; Wx 改写为||w||||x||cos(角度)&#xff0c;将角度变为了m角度 A-softmax &…

Cocos Creator 中使用装饰器进行自动绑定

推荐一个偷懒的方式&#xff0c;使用装饰器自动绑定节点到脚本的属性 背景 用 Cocos Creator 写脚本组件的时候&#xff0c;有时需要场景中一个节点作为这个脚本的属性值。 按照官方文档推荐的方法&#xff0c;需要以下两步 添加一个 property 属性&#xff0c;在场景中拖入这个…

ORB-SLAM3算法2之开源数据集运行ORB-SLAM3生成轨迹并用evo工具评估轨迹

文章目录 0 引言1 数据和真值1.1 TUM1.2 EuRoc1.3 KITTI2 ORB-SLAM3的EuRoc示例3 ORB-SLAM3的TUM-VI示例4 ORB-SLAM3的ROS各版本示例4.1 单目4.2 单目和IMU4.3 双目4.4 双目和IMU4.5 RGB-D0 引言 ORB-SLAM3算法1 已成功编译安装ORB-SLAM3到本地,本篇目的是用TUM、EuRoc和KITT…

案例分析大汇总

案例分析心得 2018-2022年的案例分析考试内容汇总&#xff08;近五年&#xff09; 架构设计题型 软件系统建模 数据库 Web 系统设计 2018年 胖/瘦客户端 C/S 架构非功能性需求 数据流图DFDE-R图Essential Use Cases(抽象用例)&#xff0c;Real Use Cases(基础用例)信息工…

双目视觉计算三维坐标

一、原理 双目视觉的基本原理&#xff0c;以及公式推导&#xff0c;我参考的b站上的视频&#xff0c;链接如下&#xff1a; 2-线性相机模型-Linear Camera Model-Camera Calibration_哔哩哔哩_bilibilihttps://www.bilibili.com/video/BV1Q34y1n7ot/?p2&spm_id_from333.…

vue 路由懒加载,图片懒加载,组件懒加载

1.路由懒加载 方法一&#xff1a; import { createRouter, createWebHistory } from vue-router;const Home () > import(./components/Home.vue); const About () > import(./components/About.vue); const Contact () > import(./components/Contact.vue);cons…

Android底层摸索改BUG(二):Android系统移除预置APP

首先我先提供以下博主博文&#xff0c;对相关知识点可以提供理解、解决、思考的 Android 系统如何预装第三方应用以及常见问题汇集android Android.mk属性说明及预置系统app操作说明系Android 中去除系统原生apk的方法 取消预置APK方法一&#xff1a; 其实就是上面的链接3&a…

03、SpringCloud -- 动态倒计时 及 当前用户的获取(用户未登录提示其登录)

目录 动态倒计时需求思路代码效果优化获取当前登录用户思路代码前端后端controllerservice接口impl实现效果问题修改动态倒计时 需求 根据不同时间展示不同状态,动态显示时间,如原型图: 思

Lua脚本语言

1. 概念 Lua&#xff08;发音为"loo-ah"&#xff0c;葡萄牙语中的"lua"意为月亮&#xff09;是一种轻量级的、高效的、可嵌入的脚本编程语言。官网Lua最初由巴西计算机科学家Roberto Ierusalimschy、Waldemar Celes和Luiz Henrique de Figueiredo于1993年开…