2,能不能贴出以下SQL语句.
   选择语句:ACCESS: "sql * form table where 字段1=值 and ....order by 字段 desc" 
            SQL语法: select * form table where 字段1=值 and ....order by 字段 desc
   删除语句:ACCESS:"delete * form table where 字段1=值 and ...."
            SQL2000语法: delete [table] where 字段1=值 and ....
   更新语句:ACCESS:"update table set 字段1=值,字段2=值 where 条件"
            SQL2000语法: update [table] set 字段1=值,字段2=值 where 条件
   插入语句:ACCESS:
            SQL2000语法:??? insert [table] values(23,234)
        或:rs.addnew
           rs(字段1)=值
           rs.update
         SQL2000可以这样操作吗? 是一样的。