找到约 10000 条结果
  • 轻松玩转makefile | 函数的使用
    在上一篇文章中,尽管使用了变量和模式,但还是有不够好的地方,在Makefile中要指明每一个源文件,我们接下来利用函数对其进行优化,并介绍其他常用的一些函数。
    2023-03-03
  • SCIE1000 通信
    SCIE1000 Semester One, 2021Python and Communication Assignment1 The scenarioA public science museum in St Lucia is planning to update its exhibit. A feature of the museumis that each exhibit item is accompanied by two explanations, each written for a different audience.One explanation is pitched ...
    2022-05-14
  • ORACLE---oracle锁表查询统计
    一.查询oralce用户锁表对象;1.1 查询oracle用户名,机器名,锁表对象 {代码...} 1.2 查询导致锁表的SQL语句 {代码...} 1.3 锁表信息统计; {代码...} 1.4 查看哪个表被锁; {代码...} 1.5 查看哪个session引起的锁表; {代码...} 1.6 当前等待锁的所有会话; {代码...}
    2020-06-12
  • leetCode 数据库
    175. 组合两个表 编写一个 SQL 查询,满足条件:无论 person 是否有地址信息,都需要基于上述两表提供 person 的以下信息: FirstName, LastName, City, State 从无论 person 是否有地址信息可以知道要使用左外连接,在编写过程中发现,使用别名会使查询快许多。外连接,内连接:[链接] {代码...} 176. 第二高薪水 limit...
    2019-09-03
  • Write a program
    Write a program to sort an array of size 10 using both Merge and Quick sort algorithms.Make sure that both algorithms collaborate to sort one dimensional array, i.e. if merge sortis applied on the first part of the array then Quick sort must be applied on the other part asshown in the following f...
    2021-07-05
  • COM4509 MLAI使用
    COM4509/6509 MLAI - Assignment Part 2 BriefDeadline: Friday, December 3, 2021 at 15:00 hrsPlease READ the whole assignment first, before starting to work on it.
    2022-06-04
  • Java对象创建的方式
    Com_select: 执行select次数,一次查询只累加1Com_insert: 执行insert次数,对于批量插入,只累计1Com_update: 执行update次数,执行update次数Com_delete: 执行delete次数,执行delete次数
    2019-11-13
  • MaxCompute - ODPS重装上阵 第七弹 - Grouping Set, Cube and Rollup
    由于业务需求,需要经常对数据进行多维度的聚合分析,如既需要对a列做聚合也要对b列做聚合,同时也要按照a、b两列同时做聚合,所以,不得不写很多很多的UNION ALL,因此造成了很多重复代码,维护起来不方便。
    2020-01-08
  • 从MySQL JOIN 算法角度看如何优化SQL
    在做MySQL的SQL优化时,如果只涉及到单表查询,那么大部分慢SQL都只需从索引上入手优化即可,通过添加合适的索引来消除全表扫描或者排序操作,执行效果,大概率能实现质的飞跃。
    2024-12-09
  • 如何在SAP ABAP系统里创建和消费Web Service
    This document could be used as guide for beginners to learn and use ABAP web service.
    2020-09-04
  • 还不会用springboot写接口?快看这里,手把手操作,一发入魂~
    创建独立的 Spring 应用程序直接嵌入 Tomcat、Jetty 或 Undertow(无需部署 WAR 文件)提供强壮的“入门”依赖项以简化您的构建配置尽可能自动配置 Spring 和第三方中间件提供生产就绪功能,例如指标、健康检查和外部化配置完全无需代码生成,无需 XML 配置
    2022-03-16
  • Gbase8a 数据库创建用户及授权
    create user admin identified by 'password'; 创建用户user支持以下书写方式:1.任意主机:user@'%'2.本机:user@'localhost'3.网段:user@'192.168.0.0'4.ip地址:user@'192.168.10.6'5.不写主机与user@'%'等价grant select on db1.t1 to use1; 为用户赋权revoke select on db1.t1 from use1; 收回用户权限show grants...
    2024-09-23
  • JS中间件封装api调用处理过程,解耦一堆复杂操作
    秉持低耦合的观念,拆分各个功能函数,做到清晰控制,数据单向流转定义中间件对象 {代码...} 使用 {代码...} 配合API接口数据返回后的操作函数 {代码...} 通过中间件以此注册 {代码...}
    2020-12-30
  • T-SQL学习中--内联接,外连接,交叉连接
    内联接查询,表A和表B中的数据必须紧密对应,不可以是Null。下面的查询中,Production.Products表中没有商品记录的的日本供货商不会被列出来。INNER这个关键词是可以舍去的,如果只写JOIN就表示INNER JOIN。
    2015-05-02
  • 351/751 数据库系统
    351/751 Database Systems, 2023, Semester 1Lab 07due Sat 13 May 2023 11:59pm (15 marks in this lab = 1.5% towards final grade)This Lab has an attendance component of (3 marks)
    2023-05-12
  • go hack(十三)jboss poc
    go网络安全代码地址jboss 漏洞poc {代码...}
    2022-09-19
  • COMP9020
    COMP9020 Assignment 2 2021 Term 2Due: Monday, 19th July, 12:00 (AEST)Submission is through WebCMS/give and should be a single pdf file, maximum size 2Mb. Proseshould be typed, not handwritten. Use of LATEX is encouraged, but not required.Discussion of assignment material with others is permitted,...
    2021-07-09