免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1024 | 回复: 0
打印 上一主题 下一主题

脚本语言初体验 — 与SQL比较 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-06-13 15:56 |只看该作者 |倒序浏览

信息的处理,包括数据库信息的处理(SQL)和文本信息的处理。我对SQL比较熟悉,下面拿SQL和文本信息的处理对比一下:

#1. 查询所有的数据 - select * from ping;

[dwapp@dw_testdb yuechaotian]$ cat ping.txt
64 bytes from 1.2.3.2: icmp_seq=0 ttl=60 time=0.655 ms
64 bytes from 1.22.3.2: icmp_seq=1 ttl=60 time=0.328 ms
64 bytes from 1.2.3.2: icmp_seq=2 ttl=60 time=0.292 ms
64 bytes from 1.22.3.2: icmp_seq=3 ttl=60 time=0.311 ms
64 bytes from 1.2.3.2: icmp_seq=4 ttl=60 time=0.316 ms
64 bytes from 1.2.3.2: icmp_seq=0 ttl=60 time=0.655 ms
64 bytes from 1.2.3.2: icmp_seq=0 ttl=60 time=0.655 ms
64 bytes from 1.22.3.2: icmp_seq=1 ttl=60 time=0.328 ms
64 bytes from 1.2.3.2: icmp_seq=2 ttl=60 time=0.292 ms
64 bytes from 1.22.3.2: icmp_seq=3 ttl=60 time=0.311 ms
64 bytes from 1.2.3.2: icmp_seq=4 ttl=60 time=0.316 ms
64 bytes from 1.22.3.2: icmp_seq=1 ttl=60 time=0.328 ms
64 bytes from 1.2.3.2: icmp_seq=2 ttl=60 time=0.292 ms
64 bytes from 1.22.3.2: icmp_seq=3 ttl=60 time=0.311 ms
64 bytes from 1.2.3.2: icmp_seq=4 ttl=60 time=0.316 ms
64 bytes from 1.22.3.2: icmp_seq=3 ttl=60 time=0.311 ms
64 bytes from 1.22.3.2: icmp_seq=3 ttl=60 time=0.311 ms
64 bytes from 1.2.3.2: icmp_seq=4 ttl=60 time=0.316 ms
64 bytes from 1.2.3.2: icmp_seq=4 ttl=60 time=0.316 ms

#2. 查询第4列和第7列 - select ip, time from ping;

[dwapp@dw_testdb yuechaotian]$ cat ping.txt | awk '{print $4"\t"$7}'
1.2.3.2:        time=0.655
1.22.3.2:       time=0.328
1.2.3.2:        time=0.292
1.22.3.2:       time=0.311
1.2.3.2:        time=0.316
1.2.3.2:        time=0.655
1.2.3.2:        time=0.655
1.22.3.2:       time=0.328
1.2.3.2:        time=0.292
1.22.3.2:       time=0.311
1.2.3.2:        time=0.316
1.22.3.2:       time=0.328
1.2.3.2:        time=0.292
1.22.3.2:       time=0.311
1.2.3.2:        time=0.316
1.22.3.2:       time=0.311
1.22.3.2:       time=0.311
1.2.3.2:        time=0.316
1.2.3.2:        time=0.316


#3. 查询ip中出现22的 - select ip, time from ping where ip like '%22%';

[dwapp@dw_testdb yuechaotian]$ cat ping.txt | awk '{print $4"\t"$7}' | grep 22
1.22.3.2:       time=0.328
1.22.3.2:       time=0.311
1.22.3.2:       time=0.328
1.22.3.2:       time=0.311
1.22.3.2:       time=0.328
1.22.3.2:       time=0.311
1.22.3.2:       time=0.311
1.22.3.2:       time=0.311

#4. 查询ip中未出现22的 - select ip, time from ping where ip not like '%22%';

[dwapp@dw_testdb yuechaotian]$ cat ping.txt | awk '{print $4"\t"$7}' | grep -v 22
1.2.3.2:        time=0.655
1.2.3.2:        time=0.292
1.2.3.2:        time=0.316
1.2.3.2:        time=0.655
1.2.3.2:        time=0.655
1.2.3.2:        time=0.292
1.2.3.2:        time=0.316
1.2.3.2:        time=0.292
1.2.3.2:        time=0.316
1.2.3.2:        time=0.316
1.2.3.2:        time=0.316

#5. 将得到的结果按照time排序 - select ip, time from ping where ip like '%22%' order
by time;

[dwapp@dw_testdb yuechaotian]$ cat ping.txt | awk '{print $4"\t"$7}' | grep 22 | sort
1.22.3.2:       time=0.311
1.22.3.2:       time=0.311
1.22.3.2:       time=0.311
1.22.3.2:       time=0.311
1.22.3.2:       time=0.311
1.22.3.2:       time=0.328
1.22.3.2:       time=0.328
1.22.3.2:       time=0.328

#6. 合并结果中的重复记录 - select distinct ip, time from ping where ip like '%22%'
order by time;

[dwapp@dw_testdb yuechaotian]$ cat ping.txt | awk '{print $4"\t"$7}' | grep 22 | sort | uniq
1.22.3.2:       time=0.311
1.22.3.2:       time=0.328

#7. 统计每个记录的数量 - select count(*), ip, time from ping where ip like '%22%'
order by time

[dwapp@dw_testdb yuechaotian]$ cat ping.txt | awk '{print $4"\t"$7}' | grep 22 | sort | uniq -c
      5 1.22.3.2:       time=0.311
      3 1.22.3.2:       time=0.328


参考:
http://oracle.chinaitlab.com/PLSQL/755199_2.html
               
               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/30637/showart_1963673.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP