免费注册 查看新帖 |

Chinaunix

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

这个awk脚本为什么不能执行? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-03-23 17:05 |只看该作者 |倒序浏览
这个awk脚本为什么不能执行呢?
BEGIN{
}
{
  printf("insert into card_log select cardno,callingnumber,callednumber,char
geclass,batch,0,stoptime,0 from rec_200_200603 where cardno=%s and stoptime in (
select min(stoptime) from rec_200_200603 where cardno=%s);\n",$1,$1)
}

用awk -f *.awk file出错。


BEGIN{
}
{
  printf("insert into card_log select cardno,callingnumber,callednumber,char
geclass,batch,0,stoptime,0 from rec_200_200603 where cardno=%s ;\n",$1)
}
能正常执行,是变量传递出了问题吗?是否和括号有关?

论坛徽章:
0
2 [报告]
发表于 2006-03-24 14:33 |只看该作者
这个awk脚本为什么不能执行呢?
BEGIN{
}
{
  printf("insert into card_log select cardno,callingnumber,callednumber,char
geclass,batch,0,stoptime,0 from rec_200_200603 where cardno=%s and stoptime in (
select min(stoptime) from rec_200_200603 where cardno=%s);\n",$1,$1)
}

->
printf("insert into card_log select cardno,callingnumber,callednumber,char
geclass,batch,0,stoptime,0 from rec_200_200603 where cardno=%s and stoptime in %s
select min%sstoptime%sfrom rec_200_200603 where cardno=%s%s;\n",$1, "(", "(", ")", $1, ")");

论坛徽章:
8
摩羯座
日期:2014-11-26 18:59:452015亚冠之浦和红钻
日期:2015-06-23 19:10:532015亚冠之西悉尼流浪者
日期:2015-08-21 08:40:5815-16赛季CBA联赛之山东
日期:2016-01-31 18:25:0515-16赛季CBA联赛之四川
日期:2016-02-16 16:08:30程序设计版块每日发帖之星
日期:2016-06-29 06:20:002017金鸡报晓
日期:2017-01-10 15:19:5615-16赛季CBA联赛之佛山
日期:2017-02-27 20:41:19
3 [报告]
发表于 2006-03-24 14:44 |只看该作者
printf("insert into card_log select cardno,callingnumber,callednumber,char \
geclass,batch,0,stoptime,0 from rec_200_200603 where cardno=%s and stoptime in ( \
select min(stoptime) from rec_200_200603 where cardno=%s);\n",$1,$1)

函数的()是不能分在多行的
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP