代码搜索:SqL

找到约 10,000 项符合「SqL」的源代码

代码结果 10,000
www.eeworm.com/read/293377/8296747

sql 456.sql

select mgr, mgr-7800,sign(mgr-7800) from scott.emp;
www.eeworm.com/read/293377/8296751

sql 4511.sql

select sum(sal) 薪水总和 from scott.emp;
www.eeworm.com/read/293377/8296753

sql 455.sql

select mgr, round(mgr/100,2),round(mgr/1000,2) from scott.emp;
www.eeworm.com/read/293377/8296755

sql 454.sql

select mgr, power(mgr,2),power(mgr,3) from scott.emp;
www.eeworm.com/read/293377/8296758

sql 453.sql

select mgr, mod(mgr,1000), mod(mgr,100), mod(mgr,10) from scott.emp;
www.eeworm.com/read/293377/8296762

sql 459.sql

select min(sal) 最少薪水 from scott.emp;
www.eeworm.com/read/293377/8296764

sql 452.sql

select mgr, mgr/100,floor(mgr/100) from scott.emp;
www.eeworm.com/read/293377/8296766

sql 457.sql

select avg(mgr) 平均薪水 from scott.emp;
www.eeworm.com/read/293377/8296768

sql 4510.sql

select max(sal) 最高薪水 from scott.emp;
www.eeworm.com/read/293377/8296770

sql 451.sql

select mgr, mgr/100,ceil(mgr/100) from scott.emp;