#Report.sqlqueryEx(0,"select * from [ADO] where [时间] >= #"+StrTime(#Datetime.GetTime(),1)+"# and [时间]<= #"+StrTime(#Datetime5.GetTime(),1)+"#
问题1. +Strtime+的 两个加号什么意思
2. "+StrTime(#Datetime5.GetTime(),1)+"的双引号什么意思
最佳答案
#Report.sqlqueryEx(0,
"select * from [ADO] where [时间] >= #"
+StrTime(#Datetime.GetTime(),1)+
"# and [时间]<= #"+StrTime(#Datetime5.GetTime(),1)+"#
我把你的语句这样给你断开一下你就明白了,"是两两配对使用的,表示这是一个字符串;而不带引号的部分表示这是脚本的一个指令函数;
而+号表示的是字符串拼接的意思:"123abc"+"456def"="123abc456def"
提问者对于答案的评价:
原创文章,作者:ximenziask,如若转载,请注明出处:https://www.zhaoplc.com/plc367267.html