代码搜索:sql

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

代码结果 10,000
www.eeworm.com/read/336594/12435456

sql 428.sql

select empno,ename,sal,mgr,sal+mgr from scott.emp
www.eeworm.com/read/336594/12435458

sql 423.sql

select distinct job from scott.emp
www.eeworm.com/read/336594/12435461

sql 422.sql

select empno,ename,job from scott.emp
www.eeworm.com/read/336594/12435466

sql 456.sql

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

sql 4511.sql

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

sql 455.sql

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

sql 454.sql

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

sql 453.sql

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

sql 459.sql

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

sql 452.sql

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