绿野仙踪

BlogJava 首页 新随笔 联系 聚合 管理
  7 Posts :: 0 Stories :: 2 Comments :: 0 Trackbacks

2009年7月31日 #

在ajax中用encodeURIComponent处理一下中文数据

到php端用iconv( 'UTF-8', 'gb2312//IGNORE' , $_POST['data'])处理即可,红色的为接收的数据
posted @ 2009-08-21 14:11 ciyuanlong 阅读(236) | 评论 (1)编辑 收藏

以前只用到过update a set a.pwd=b.pwd from a inner join b on a.id=b.id
所以想当然就认为delete from a inner join b on a.id=b.id
就是感觉别扭,gg了一下才知道语法错了
sql server下应该这么写
    delete from a from a inner join b on a.id=b.id

而Access中写为
    delete from a inner join b on a.id=b.id


update 语句也不同
    Access
        update  a inner join b on a.id=b.id set a.pwd=b.pwd 
   
   SQL Server
        update a set a.pwd=b.pwd from a inner join b on a.id=b.id

posted @ 2009-07-31 10:50 ciyuanlong 阅读(3251) | 评论 (1)编辑 收藏