1.使用条件查询 查询部门为20的员工列表 -- 查询部门为20的员工列表 SELECT t.DEPTNO,t.ENAME FROM SCOTT.EMP t where t.DEPTNO 20 ; 效果: 2.使用 listagg() WITHIN GROUP () 将多行合并成一行(比较常用) SELECT T .DEPTNO, listagg (T .ENAME, ,) WIT…
三种运算符重载,每个至少实现一个运算符的重载
#include <iostream>using namespace std;class Person
{friend const Person operator- (const Person &L, const Person &R);friend bool operator<(const Person &L,const Person &R);f…