问题描述
- 求大神指导SQL语句怎么写
-
建立了一张活动表
actid int primary key identity(1,1),
actname varchar(50) not null,
actshort varchar(200) not null,
actlong varchar(1000) not null,
actaddress varchar(100) not null,
actgoway varchar(200) not null,
volshort varchar(100),
vollong varchar(200) not null,
actdate datetime not null,
actjpg varchar(200),
typeid int not null,
station varchar(20) not null,
grade int not null,
people varchar(50),
theme varchar(200),
flagname varchar(50),
volsnum int ,
usersnum int )
里面有总共允许参加的用户数usersnum有一张活动报名表
if OBJECT_ID('orderac')is not null /*用户活动报名信息表*/
drop table orderac
create table orderac(
orderid int primary key not null identity(1,1),
userid int not null,
actid int not null,
typeid int not null,
bmtime datetime not null,
usernum int not null
)usernum代表用户要报名几个人数
如何写语句,总和不大于usersnum的时候可以报名,否则报名失败,无法形成报名订单,就是无法insert into
是用myeclipse jsp开发的
还要弄个报名进度条,进度条怎么写语句,控件是什么,求大神推荐一个
解决方案
这不是sql语句的逻辑了吧。
select sum(usernum) from orderac where actid='活动',然后在页面或者java代码判断总和是否超了
时间: 2025-01-21 01:16:39