当前位置: 代码迷 >> Sql Server >> select * from table where file1='" & "a:" & Trim(record) & "' ,为什么要& "a:" & ,是什么意思?该怎么解决
  详细解决方案

select * from table where file1='" & "a:" & Trim(record) & "' ,为什么要& "a:" & ,是什么意思?该怎么解决

热度:286   发布时间:2016-04-27 17:04:43.0
select * from table where file1='" & "a:" & Trim(record) & "' ,为什么要& "a:" & ,是什么意思?
select   *   from   table   where   file1= ' "   &   "a: "   &   Trim(record)   &   " '   ,为什么要&   "a: "   &   ,是什么意思?


------解决方案--------------------
&(按位 AND)
在两个整型值之间执行按位逻辑与运算。
楼主看一下联机帮助里有说明用法
  相关解决方案