MySQL图书管理系统(49-94)源码

-- 九、    子查询


-- 无关子查询
-- 比较子查询:能确切知道子查询返回的是单值时,可以用>,<,=,>=,<=,!=或<>等比较运算符。
-- 49、    查询与“俞心怡”在同一个部门的读者的借书证编号、姓名、部门。
select 借书证编号, 姓名, 部门 from 读者 where 部门 = (select 部门 from 读者 where 姓名 = '俞心怡');

select 借书证编号, 姓名, 部门 from 读者 where 部门 = (select 部门 from 读者 where 姓名 = '俞心怡');

-- 50、    查询“喻明远”的借阅信息,包括:借书证编号、图书条码号、借出日期。
select 读者.借书证编号, 图书条码号, 借出日期 from 读者, 借阅 where 读者.借书证编号 = 借阅.借书证编号 and 姓名 = '喻明远' ;

select 读者.借书证编号, 图书条码号, 借出日期 from 读者, 借阅 where 读者.借书证编号 = 借阅.借书证编号 and 姓名 = '喻明远' ;


-- 51、    查询和图书条码为‘0000018’的图书相同出版社的图书
select 书名, 出版社
from 图书详情
where ISBN in (select ISBN from 图书 where 图书条码号 = '0000018');

select 书名, 出版社
from 图书详情
where ISBN in (select ISBN from 图书 where 图书条码号 = '0000018');

--  SOME、ANY、ALL和IN子查询:
-- WHERE  比较运算符[ NOT ] ALL ( 子查询)
-- S>ALL  R:当S大于子查询R中的每一个值,该条件为真TRUE。
-- NOT  S>ALL  R:当且仅当S不是R中的最大值,该条件为真TRUE
-- ANY确定给定的值是否满足子查询或列表中的部分值。
-- 语法如下:   WHERE比较运算符[ NOT ] ANY ( 子查询)
-- S>ANY  R:
-- 当且仅当S至少大于子查询R中的一个值,该条件为真TRUE。
-- NOT  S>ANY  R:
-- 当且仅当S是子查询R中的最小值,该条件为真TRUE。
-- “in”等同于“=any”、not in等同于“<>all”


-- 52、    查询 “清华大学出版社”图书中的价格最高的图书详细信息。
select * from 图书详情 where 价格 in (select MAX(价格) from 图书详情 where 出版社 = '清华大学出版社');

select * from 图书详情 where 价格 in (select MAX(价格) from 图书详情 where 出版社 = '清华大学出版社');

select * from 图书详情 where 出版社 = '清华大学出版社' and 价格 >= all (select 价格 from 图书详情 where 出版社 = '清华大学出版社');

select * from 图书详情 where 出版社 = '清华大学出版社' and 价格 >= all (select 价格 from 图书详情 where 出版社 = '清华大学出版社');

-- 53、    查询比所有“清华大学出版社”图书的价格都低的图书详细信息。
select * from 图书详情 where 价格 < all (select 价格 from 图书详情 where 出版社 = '清华大学出版社');

select * from 图书详情 where 价格 < all (select 价格 from 图书详情 where 出版社 = '清华大学出版社');

-- 54、    查询比任何一个“清华大学出版社”图书的价格低的图书详细信息。
select * from 图书详情 where 价格 < any (select 价格 from 图书详情 where 出版社 = '清华大学出版社');

select * from 图书详情 where 价格 < any (select 价格 from 图书详情 where 出版社 = '清华大学出版社');

-- 55、    查询借阅了“数据库原理”的图书的读者借书证编号、姓名
select 借书证编号, 姓名
from 读者
where 借书证编号 in (select 借书证编号
                from 图书详情 tx
                         left join 图书 t on tx.ISBN = t.ISBN
                         left join 借阅 jie on t.图书条码号 = jie.图书条码号
                where 书名 = '平凡的世界');

select 借书证编号, 姓名
from 读者
where 借书证编号 in (select 借书证编号from 图书详情 txleft join 图书 t on tx.ISBN = t.ISBNleft join 借阅 jie on t.图书条码号 = jie.图书条码号where 书名 = '平凡的世界');

-- 56、    查询借阅图书最积极的读者详细信息
select * from 读者
where 借书证编号 in
      (select 借书证编号 from 借阅 group by 借书证编号 having count(*) >= all (select count(*) from 借阅 group by 借书证编号));

select * from 读者
where 借书证编号 in(select 借书证编号 from 借阅 group by 借书证编号 having count(*) >= all (select count(*) from 借阅 group by 借书证编号));

-- 相关子查询:
-- 57、    查询价格比该书所在出版社所有图书的平均价格低的图书ISBN、书名、价格。
select ISBN, 书名, 价格
from 图书详情
where 价格 < all (select avg(价格) from 图书详情 where 出版社 in (select 出版社 from 图书详情 where 书名 = '平凡的世界'));

select ISBN, 书名, 价格
from 图书详情
where 价格 < all (select avg(价格) from 图书详情 where 出版社 in (select 出版社 from 图书详情 where 书名 = '平凡的世界'));

--  带有EXISTS的子查询(存在性测试)
-- 58、    查询所有借阅了图书条码号为0000001的读者姓名。
select 姓名
from 读者
where  exists(select 借书证编号 from 借阅 where 图书条码号 = '0000001' and 借阅.借书证编号 = 读者.借书证编号);

select 姓名
from 读者
where  exists(select 借书证编号 from 借阅 where 图书条码号 = '0000001' and 借阅.借书证编号 = 读者.借书证编号);


-- 用作查询语句中的列表达式的子查询
-- 59:查询图书的ISBN、书名、价格,价格与所有图书平均价格的差值。
select ISBN, 书名, 价格 - (select round(avg(价格)) from 图书详情) from 图书详情;

select ISBN, 书名, 价格 - (select round(avg(价格)) from 图书详情) from 图书详情;

--  子查询结果作为主查询的查询对象
--  (选做)60:查询有两个以上读者的借阅图书数超过3本的部门
select 部门, COUNT(distinct 借书证编号) tushu
from 读者
group by 部门
having tushu > 3;

select 部门, COUNT(distinct 借书证编号) tushu
from 读者
group by 部门
having tushu > 3;

select 部门 from 读者 group by 部门 having count(distinct 借书证编号) > 3;

select 部门 from 读者 group by 部门 having count(distinct 借书证编号) > 3;

--  INSERT语句中使用SELECT子句
-- 61、    创建“图书”表的一个副本“图书2”,将馆藏地编号为';0001';的图书信息添加到“图书2”,并显示表中内容。
create table 图书2 as select * from 图书 where 馆藏地编号 = '0001';

insert into 图书2 select * from 图书 where 馆藏地编号 = '0001';

create table 图书2 as select * from 图书 where 馆藏地编号 = '0001';insert into 图书2 select * from 图书 where 馆藏地编号 = '0001';

--  UPDATE语句中使用SELECT子句
-- 62、    将喻明远借阅的“0000001”图书的归还日期修改为“2020-9-1”
update 借阅
set 归还日期 = '2020-9-1'
where 归还日期 in (select 归还日期 from 读者 where 姓名 = '喻明远' and 图书条码号 = '0000001');

update 借阅
set 归还日期 = '2020-9-1'
where 归还日期 in (select 归还日期 from 读者 where 姓名 = '喻明远' and 图书条码号 = '0000001');

-- 63、    将图书表中价格最高图书的价格的减去20。
update 图书详情
set 价格 := 价格 - 20
where 价格 in (select 价格 from (select max(价格) from 图书详情) temp);

update 图书详情
set 价格 := 价格 - 20
where 价格 in (select 价格 from (select max(价格) from 图书详情) temp);


-- 64、    将价格排在前5名的图书的价格减去20。
update 图书详情
set 价格 = 价格 - 20
where 价格 in (select 价格 from (select 价格 from 图书详情 order by 价格 desc limit 5) temp);

update 图书详情
set 价格 = 价格 - 20
where 价格 in (select 价格 from (select 价格 from 图书详情 order by 价格 desc limit 5) temp);

--  DELETE语句中使用SELECT子句
-- 65、    删除喻明远借阅的“0000003”图书借阅信息
delete
from 借阅
where 图书条码号 = (select 图书条码号
               from (select 读者.*
                     from 读者,
                          借阅
                     where 借阅.借书证编号 = 读者.借书证编号
                       and 图书条码号 = '0000003'
                       and 姓名 = '喻明远') temp);

delete
from 借阅
where 图书条码号 = (select 图书条码号from (select 读者.*from 读者,借阅where 借阅.借书证编号 = 读者.借书证编号and 图书条码号 = '0000003'and 姓名 = '喻明远') temp);

-- 数据查询综合练习
-- 66、    查询还可以继续借阅图书的读者
select * from 读者 where 借书证编号 not in (select 借书证编号 from 借阅);

select * from 读者 where 借书证编号 not in (select 借书证编号 from 借阅);


-- 67、    查询最热门的图书
select * from 图书详情 where ISBN = (select ISBN from 图书 group by ISBN having count(ISBN) order by ISBN limit 1);

select * from 图书详情 where ISBN = (select ISBN from 图书 group by ISBN having count(ISBN) order by ISBN limit 1);

-- 68、    查询借阅超期的读者信息及其借阅信息

-- 69、    查询所有“python”相关图书信息

-- 70、    将一新图书信息进行入库操作


--  十、    备份、还原数据库


--  71.    备份book数据库到e盘的mybook.sql文件(备份文件中要求包含建库命令)

cmd命令窗口输入
# mysqldump -uroot -p197412xukang --databases book > E:/mybook.sql

# mysqldump -uroot -p197412xukang --databases book > E:/mybook.sql


--  72.    使用mysql命令利用e盘根目录的文件“mybook.sql”还原数据库
# mysql -uroot -p197412xukang < E:/mybook.sql

# mysql -uroot -p197412xukang < E:/mybook.sql

--  十一、    索引


--  73.    在读者表的姓名列上创建一个降序索引”reader_name_index”
create index reader_name_index on 读者(姓名 desc);

create index reader_name_index on 读者(姓名 desc);


--  74.    在读者表的部门和姓名上创建一个复合索引”reader_index”
create index reader_index on 读者(部门, 姓名);

create index reader_index on 读者(部门, 姓名);


--  75.    删除读者表的索引”reader_index”
drop index reader_index on 读者;

drop index reader_index on 读者;

show index from 读者;

show index from 读者;

--  十二、    视图


--  76.    创建视图view_reader_book,包括读者的姓名、借书证编号、部门、图书条码号、书名、价格、出版社、馆藏地、借出日期、归还日期
create or replace view view_reader_book as
select 姓名,
       读者.借书证编号,
       部门,
       借阅.图书条码号,
       书名,
       价格,
       出版社,
       图书.馆藏地编号,
       借阅.借出日期,
       借阅.归还日期
from 读者
          join 借阅 on 读者.借书证编号 = 借阅.借书证编号
          join 图书 on 借阅.图书条码号 = 图书.图书条码号
          join 图书详情 图 on 图书.ISBN = 图.ISBN;

select * from view_reader_book;

create or replace view view_reader_book as
select 姓名,读者.借书证编号,部门,借阅.图书条码号,书名,价格,出版社,图书.馆藏地编号,借阅.借出日期,借阅.归还日期
from 读者join 借阅 on 读者.借书证编号 = 借阅.借书证编号join 图书 on 借阅.图书条码号 = 图书.图书条码号join 图书详情 图 on 图书.ISBN = 图.ISBN;select * from view_reader_book;


--  77.    利用view_reader_book视图查询部门为"信息工程学院"的读者借阅书籍信息。
select * from view_reader_book where 部门 = '信息工程学院';

select * from view_reader_book where 部门 = '信息工程学院';

--  十三、    存储过程


--  78.    创建无参存储过程proc_reader,查询所有读者信息。
create procedure proc_reader()
begin
    select * from 读者;
end;

create procedure proc_reader()
beginselect * from 读者;
end;

--  79.    执行存储过程proc_reader
call proc_reader();

call proc_reader();

--  80.    创建存储过程pro_reader_info,根据读者的姓名查询读者信息。
create procedure pro_reader_info(in name varchar(10))
begin
    select * from 读者 where 姓名 = name;
end;

create procedure pro_reader_info(in name varchar(10))
beginselect * from 读者 where 姓名 = name;
end;

--  81.    执行存储过程pro_reader_info,查询读者姓名为”俞心怡”的读者信
call pro_reader_info('俞心怡');

call pro_reader_info('俞心怡');

select 图书条码号 from 借阅 where 借书证编号 = '90041011000006';
--  82.    创建存储过程proc_update,修改某读者借阅的某图书的归还时间
create procedure proc_update(in endTime datetime, in Borrowing_card_number varchar(20), in Book_barcode_number varchar(20))
begin
    update 借阅
    set 归还日期 = endTime
    where 借书证编号 = Borrowing_card_number and 图书条码号 = Book_barcode_number;
end;

drop procedure if exists proc_update;

create procedure proc_update(in endTime datetime, in Borrowing_card_number varchar(20), in Book_barcode_number varchar(20))
beginupdate 借阅set 归还日期 = endTimewhere 借书证编号 = Borrowing_card_number and 图书条码号 = Book_barcode_number;
end;drop procedure if exists proc_update;

存储过程被创建后,就会一直保存在数据库服务器上,直至被删除。当 MySQL 数据库中存在废弃的存储过程时,我们需要将 中删除。

废弃的存储过程

什么是废弃的

已经运行完了的

https://www.cnblogs.com/ccstu/p/12182933.html(MySQL之存储过程procedure)


--  83.    执行存储过程proc_update ,将“90041011000006”号读者借阅的“0000002”号图书的归还时间修改为“2020-10-1”
call proc_update('2020-10-1', '90041011000006','0000002');

call proc_update('2020-10-1', '90041011000006','0000002');

--  十四、条件和处理程序


--  84.    创建错误处理程序,完成以下功能:如果没有更多的行要提取,将no_row_found变量的值设置为1并继续执行。
# Declare continue handler for NOT FOUND set @no_row_found = 1;
--  85.    创建错误处理程序,完成以下功能:如果发生错误,回滚上一个操作,发出错误消息,并退出当前代码块。如果在存储过程的begin......end块中声明它,则会立即终止存储过程。
# Declare exit handler for SQLEXCEPTION
# begin
#     rollback;
#     select '发生错误,回滚上一个操作';
# end;

--  86.    创建错误处理程序,完成以下功能:如果发生重复的键错误,则会发出mysql错误1062,它发出错误消息退出或者继续执行。
# (提示:(1)创建一个数据表t1,只有一个字段id,并且id为主键。
create table t1(id int primary key);

create table t1(id int primary key);


# (2)创建一个存储过程handlerdemo,在存储过程中:插入两次相同的数据,定义处理程序,遇到重复值错误就退出(重复值错误的代码是1062)。
# 第一次插入数据前将用户变量@x设置为1,第一次插入数据之后将@x变量设置为2,第二次插入数据之后将@x变量设置为3。

create procedure handlerdemo()
begin
    -- continue 遇到错误继续执行
    -- exit 遇到错误退出
    declare continue handler for 1062 set @info = '重复键错误';

    set @x = 1;

    INSERT INTO t1 values (1);
    set @x = 2;
    INSERT INTO t1 values (1);
    set @x = 3;

    select @x;
end;

create procedure handlerdemo()
begin-- continue 遇到错误继续执行-- exit 遇到错误退出declare continue handler for 1062 set @info = '重复键错误';set @x = 1;INSERT INTO t1 values (1);set @x = 2;INSERT INTO t1 values (1);set @x = 3;select @x;
end;

# (3)执行存储过程,查询@x变量的值。(4)再次执行存储过程,查询@x变量的值。
call handlerdemo();
select @x;

# (5)删除数据表、删除存储过程,重复(1)-(4)步骤,但把步骤(2)中的处理程序改成遇到重复值错误继续。)
drop table t1;
drop procedure if exists handlerdemo;

drop table t1;
drop procedure if exists handlerdemo;

--  十五、    游标


--  87.    利用游标,遍历读者表的所有记录的借书证号、姓名并显示。
delimiter ;
drop procedure if exists cursor_for;

create procedure cursor_for()
begin
    declare card_number varchar(50);
    declare name varchar(50);
    declare count int default 0;
    declare u_cursor cursor for (select 借书证编号, 姓名 from 读者);
    declare exit handler for not found close u_cursor;
    # 开启游标
    open u_cursor;
    www:while true do
        -- 如果获得的数据大于三就退出
        if count > 3 then
            leave www;
        end if;

        fetch u_cursor into card_number, name;
        select card_number, name;
        set count := count + 1;
        end while www;
    close u_cursor;
end;

call cursor_for();

delimiter ;
drop procedure if exists cursor_for;create procedure cursor_for()
begindeclare card_number varchar(50);declare name varchar(50);declare count int default 0;declare u_cursor cursor for (select 借书证编号, 姓名 from 读者);declare exit handler for not found close u_cursor;# 开启游标open u_cursor;www:while true do-- 如果获得的数据大于三就退出if count > 3 thenleave www;end if;fetch u_cursor into card_number, name;select card_number, name;set count := count + 1;end while www;close u_cursor;
end;call cursor_for();


--  十六、    流程控制


--  88.     创建存储过程,求1+2+3+......的和,如果和大于100则跳出循环
create procedure p10(in n int)
begin
    declare total int default 0;

    sum:loop
        if total > 100 then
            leave sum;
        end if;

        if n >= 0 then
            set total := total + n;
            set n := n - 1;
        end if;
    end loop;

    select total;
end;

call p10(100);


--  十七、    事件


--  89.    创建在某一时间(时间自己定)执行的事件:在sc表中插入一条数据


--  十八、    触发器


drop trigger if exists BookUpdate;
show create table 借阅;
alter table 借阅 add constraint fk_cardNumber_bookNumber foreign key 借阅(图书条码号) references 图书(图书条码号);
alter table 借阅 drop foreign key fk_cardNumber_bookNumber;
--  90.    创建触发器BookUpdate,当图书表的某图书的图书条码号更新时,级联更新借阅表的相应记录图书条码号
create trigger BookUpdate
    after update on 图书 for each row
begin
    update 借阅 set 借阅.图书条码号 = new.图书条码号 where 借阅.图书条码号 = OLD.图书条码号;
end;

create trigger BookUpdateafter update on 图书 for each row
beginupdate 借阅 set 借阅.图书条码号 = new.图书条码号 where 借阅.图书条码号 = OLD.图书条码号;
end;

update 图书 set 图书条码号 = '0000040' where ISBN = '978-754-462-1';
--  91.    创建触发器BookDelete,当图书表的某图书记录删除时,级联删除借阅表的相应图书借阅记录
create trigger BookDelete
    before delete on 图书 for each row
begin
    delete from 借阅
        where 借阅.图书条码号 = OLD.图书条码号;
end;

delete from 图书 where 图书条码号 = '0000015';
--  92.    按照“读者”表的结构创建备份表reader_bak,然后在“读者”表中创建触发器insert_reader,每次向“读者”表中插入记录时,自动将插入的记录备份到备份表reader_bak中。
CREATE TABLE reader_bak LIKE 读者;

create trigger insert_reader
    after insert on 读者 for each row
begin
    insert into reader_bak
    select * from 读者 where 读者.借书证编号 = new.借书证编号;
end;

CREATE TABLE reader_bak LIKE 读者;create trigger insert_readerafter insert on 读者 for each row
begininsert into reader_bakselect * from 读者 where 读者.借书证编号 = new.借书证编号;
end;

--  十九、    用户、权限


--  93.    创建名为user1的用户,密码为user1111,主机名为localhost。
create user 'user1'@'localhost' identified by 'user1111';

create user 'user1'@'localhost' identified by 'user1111';


--  94.    授予user1@localhost用户对book数据库的select、update 的权限
GRANT select, update on book.* to 'user1'@'localhost';

GRANT select, update on book.* to 'user1'@'localhost';

show grants for 'user1'@'localhost';
drop user if exists 'user1'@'localhost';
 

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

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

相关文章

诊所小程序开发,需要包含哪些功能,有什么注意事项?

开发一个诊所预约小程序&#xff0c;可以提高口腔诊所的服务效率和客户体验。那么&#xff0c;一般小程序的流程和功能包含哪些内容&#xff1f; 注册登录&#xff1a;用户可以快速授权并登录(可定制多种登录方式) 预约挂号&#xff1a;用户可以选择科室、医生、日期和时段进行…

Unity中Shader指令优化(编译后指令解析)

文章目录 前言一、我们先创建一个简单的Shader二、编译这个Shader&#xff0c;并且打开1、编译后注意事项2、编译平台 和 编译指令数3、顶点着色器用到的信息4、顶点着色器计算的核心部分5、片元着色器用到的信息6、片元着色器核心部分 前言 我们先读懂Shader编译后代码&#…

Linux命令与shell脚本编程大全【读书笔记 + 思考总结】

Linux命令与shell脚本编程大全 第 1 章 初识Linux shellLinux的组成及关系结构图是什么&#xff1f;Linux系统内核的作用是什么&#xff1f;内核的主要功能是什么&#xff1f;&#xff08;4点&#xff09;物理内存和虚拟内存是什么关系&#xff1f;内核如何实现虚拟内存&#x…

Ubuntu中MySQL安装与使用

一、安装教程&#xff1a;移步 二、通过sql文件创建表格&#xff1a; 首先进入mysql&#xff1a; mysql -u 用户 -p 回车 然后输入密码source sql文件&#xff08;路径&#xff09;;上面是sql语句哈&#xff0c;所以记得加分号。 sql文件部分截图&#xff1a; 创建成功后的部…

【android开发-04】android中activity的生命周期介绍

1&#xff0c;返回栈 android中使用任务task来管理activity&#xff0c;一个任务就是一组存放在栈里的活动的集合&#xff0c;这个栈被称为返回栈。栈是一种先进先出的数据结构。当我们启动一个新的活动&#xff0c;他会在返回栈中人栈&#xff0c;并处以栈顶的位置&#xff0…

浮点运算误差

输出所有形如aabb的4位完全平方数&#xff08;即前两位数字相等&#xff0c;后两位数字也相等&#xff09; 解决这个问题首先需要表示aabb这个变量&#xff0c;只需要定义一个变量n存储即可&#xff0c;另一个问题就是如何判断n是否为完全平方数&#xff1f; 第一种思路是先求出…

【Python表白系列】无限弹窗,满屏表白代码来啦(完整代码)

文章目录 满屏表白代码环境需求完整代码详细分析系列文章 满屏表白代码 环境需求 python3.11.4PyCharm Community Edition 2023.2.5pyinstaller6.2.0&#xff08;可选&#xff0c;这个库用于打包&#xff0c;使程序没有python环境也可以运行&#xff0c;如果想发给好朋友的话需…

rust中动态数组Vec的简单使用

在Rust中&#xff0c;Vector&#xff08;简称Vec&#xff09;是一个动态数组数据结构&#xff0c;它可以动态地增加或减少其容量。Vec是Rust标准库中的一个常见类型&#xff0c;非常适合用于存储和操作一系列相同类型的值。 Vec其实是一个智能指针&#xff0c;用于在堆上分配内…

2022年1月14日 Go生态洞察:Go 1.18 新教程探索

&#x1f337;&#x1f341; 博主猫头虎&#xff08;&#x1f405;&#x1f43e;&#xff09;带您 Go to New World✨&#x1f341; &#x1f984; 博客首页——&#x1f405;&#x1f43e;猫头虎的博客&#x1f390; &#x1f433; 《面试题大全专栏》 &#x1f995; 文章图文…

绩效考核管理项目|记录2

给界面添加筛选条件并且把搜索功能实现 这段代码写入搜索方法里面就能实现功能。 private void bingdgv(){//筛选项&#xff1a;用户名、职位代码、是否辞职string userName txtUserName.Text.Trim();int baseTypeId (int)base_cbx.SelectedValue;bool isStop isdel_ckb.Che…

【VMware相关】VMware vSphere存储方案

一、iSCSI存储 参考文档 VMware官方文档&#xff1a;配置iSCSI适配器和存储 华为配置指南&#xff1a;VMware ESXi下的主机连通性指南 1、配置说明 如下图所示&#xff0c;VMware配置iSCSI存储&#xff0c;需要将物理网卡绑定到VMKernel适配器上&#xff0c;之后再将VMKernel适…

Golang数据类型(数字型)

Go数据类型&#xff08;数字型&#xff09; Go中数字型数据类型大致分为整数&#xff08;integer&#xff09;、浮点数&#xff08;floating point &#xff09;和复数&#xff08;Complex&#xff09;三种 整数重要概念 整数在Go和Python中有较大区别&#xff0c;主要体现在…

opencv 图像边框

cv.copyMakeBorder() 图像设置边框或者填充

PyQt基础_012_对话框类控件QInputDialog

基本操作 import sys from PyQt5.QtCore import * from PyQt5.QtGui import * from PyQt5.QtWidgets import *class InputdialogDemo(QWidget):def __init__(self, parentNone):super(InputdialogDemo, self).__init__(parent)layout QFormLayout()self.btn1 QPushButton(&qu…

springboot+java校园自助洗衣机预约系统的分析与设计ssm+jsp

洗衣服是每个人都必须做的事情&#xff0c;而洗衣机更成为了人们常见的电器&#xff0c;但是单个洗衣机价格不菲&#xff0c;如果每人都买&#xff0c;就会造成资源的冗余。所有就出现了公用设备&#xff0c;随着时代的发展&#xff0c;很多公用都开始向着无人看守的自助模式经…

如何访问电脑的组策略编辑器?

如何打开组策略 如果我们使用的是 Win 10 系统&#xff0c;如何打开组策略&#xff1f;下面为大家总结了四种打开组策略编辑器的方法。 从搜索框打开 Win 10 策略组怎么打开&#xff1f;一个简单快速的方法就是使用 Windows 自带的搜索栏。我们可以向搜索框中输入“编辑组策…

【数电笔记】基本和复合逻辑运算

说明&#xff1a; 笔记配套视频来源&#xff1a;B站 基本逻辑运算 1. 与运算 &#xff08;and gate&#xff09; 2. 或运算 &#xff08;or gate&#xff09; 3. 非运算 &#xff08;not gate &#xff09; 复合逻辑运算 1. 与非运算&#xff08;nand&#xff09; 2. 或非运…

【动手学深度学习】(七)丢弃法

文章目录 一、理论知识二、代码实现2.1从零开始实现Dropout 【相关总结】np.random.uniform(low&#xff0c;high&#xff0c;size)astypetorch.rand() 一、理论知识 1.动机 一个好的模型需要对输入数据的扰动鲁棒 使用有噪音的数据等价于Tikhonov正则丢弃法&#xff1a;在层…

vivado实现分析与收敛技巧3-面向非工程用户的智能设计运行建议

要使用智能设计运行功能特性 &#xff0c; 需要 Vivado 工程。这是因为需要进行运行管理。以下指示信息解释了创建综合后工程的最简单方法。这些信息适用于以下流程的用户&#xff1a; • 非工程实现运行 • 使用较低版本的 Vivado 或第三方综合工具进行综合 访问智能设计…

MvLNet

表1 Noisy MNIST–ACC&#xff1a;0.678&#xff0c;F-mea&#xff1a;0.6691&#xff0c;NMI&#xff1a;0.6632&#xff0c;AMI&#xff1a;0.6626 Caltech101-20–ACC&#xff1a;0.3521&#xff0c;F-mea&#xff1a;0.2535&#xff0c;NMI&#xff1a;0.4968&#xff0c;A…