请教office里面的office365是怎么用的
Office 365现已升级为Microsoft 365,全新名称,更多权益,价格不变。Microsoft 365是一种订阅,拥有协作性出色的新功能,可提供无缝集成体验。Microsoft 365包括您熟悉的强大Office高级应用,如Word、Excel、PowerPoint、OneNote、Outlook、Access(仅限 Windows PC)、Publisher(仅限 Windows PC)等。此外,它还提供额外的OneDrive在线存储空间和云连接功能,让您可以与他人实时协作处理文件。在订阅期间,您将始终能够获得新的功能、修补程序和安全更新以及持续的技术支持,无需额外付费。Microsoft 365赋予您灵活性,可在电脑、平板、手机等多台常用设备上安装,兼容Windows, macOS,iOS及Android系统,每人可同时登录5台设备。Microsoft 365个人版仅供1人使用。Microsoft 365家庭版总共允许6人使用,因此最多可与5位用户共享。
访问微软官方商城,了解更多关于Microsoft 365的产品价格、特点和使用详情。
PLSQL中,select case..when.. then..什么意思怎么用
case when ... then .. when .. then ... end
这种表达式,是sql的不同条件分支结果。
举例如下,
1、创建数据表,create table test_student(stu_id number, class_id number);
2、插入测试数据,
insert into test_student values(1,1001);
insert into test_student values(2,1001);
insert into test_student values(3,1002);
insert into test_student values(4,1003);
insert into test_student values(5,1003);
insert into test_student values(6,1003);
3、查询表中数据,select * from test_student ,
4、编写case when 表达式,将class_id翻译为中文名称,sql如下,
select t.*,
case
when class_id = 1001 then
’语文’
when class_id = 1002 then
’数学’
when class_id = 1003 then
’英语’
end as class_name
from test_student t;
如何删除Project2013中无效的资源
按以上操作就会进入【资源工作表】了,里面可以删除、编辑资源内容。