4. delete from xsxxb where condition <>'团员'
5. select xm,xb from xsxxb
6. select top 5 name,sex,age from xsxxb order by age desc
7. select name,age from xsxxb where age between 20 and 23
8. select * from xsxxb where telephone like '0351%' or telephone like '0354%' or telephone like '0355%'
9. select count(*) from xsxxb
假如表名是 依然0128insert into 依然0128 values('value1','value2','value3',....)
insert into 依然0128 values('value11','value22','value33',....)
insert into 依然0128 values('value111','value222','value333',....)
.
可能是因为你同时打开了两个页面造成的插入两打记录.因为同时打开,且是在客户端执行判断语句.所以,两个页面所得到的值是一样的,都是没有记录,然后同时执行插入命令。
把判断语句的处理方式改用Application对像来处理,同时用lock与unlock来处理.
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)