发布网友 发布时间:2022-05-02 18:33
共4个回答
懂视网 时间:2022-05-02 22:54
查看表:select * from 表名;
查看字符集:select userenv(‘langu字段名‘) from dual;
查看全部字符集:select * from nls_database_parameters;
--去除重复
select distinct 字段名 from 表名
--分组筛选
select * from 表名 t group by t.phone
having count(*)>1;
--求空值
select * from 表名 where 字段名 is null;
--更新数据
update 表名 set 字段名=39 where 字段名 is null and 字段名>110;
select * from 表名 where 字段名>110;
--求平均值
select avg(字段名) from 表名;
--求最大值和最小值
select max(字段名),min(字段名) from 表名;
--求标准差
select 字段名,round((字段名-18)/(60-18),2) 字段名_stand from 表名;
--取前一万条数据
select * from 表名 where rownum <=10000;
pl/sql客户端命令
标签:where and 筛选 tab sele 客户端命令 均值 客户 表名
热心网友 时间:2022-05-02 20:02
命令窗口使用方式类似于Windows 的CMD窗口,不过该命令窗口支持换行,当你在其中输入可执行命令后,最后以半角的分号“;"结束,回车便开始执行。热心网友 时间:2022-05-02 21:20
你的要执行登录 还是什么?追问是执行语句,我已经知道怎么回事了,谢谢!
热心网友 时间:2022-05-02 22:55
不是回车就行了么...