求:ASPsql查询按数组值查询修改怎么写代码?什么是PHP语言?
求:ASPsql查询按数组值查询修改怎么写代码?
select 字段,(case bh when 'bh001' then ys+1when 'bh002' then ys+3when 'bh003' then ys+5 else '' end)newcol from 表
什么是PHP语言?
PHP(PHP: Hypertext Preprocessor)即“超文本预处理器”,是在服务器端执行的脚本语言,尤其适用于Web开发并可嵌入HTML中。PHP语法学习了C
ASP怎么把字符串转换为数组形式?
<% dim s,t,i s="peng" redim t(len(s)-1) for i=1 to len(s) t(i-1)=mid(s,i,1) next '测试结果 for i=0 to ubound(t) response.write t(i) & "<br>" next %>
0