㈠ T-sql如何写年龄的约束
明天的是对的
select * from table where age> 15and id<40这个是查找一张表里面的ID小于40年龄小于15的
㈡ sql sever中 在年龄上加检查约束,使“年龄”字段只能输入数字
sql server企业管理器中,定义Check约束,在约束表达式中加上你自定义的约束条件,比如:age >= 18 AND age <= 100
㈢ sql check约束,StuAge字段要求年龄介于15到25之间
create table test(stuage int check(stuage>=15 and stuage<=25))
㈣ 用sql语句创建学生表,年龄的约束条件只能在14到28之间
可以用check
createtablestudent(
idint(10)primarykeynotnull,
snameVARCHAR(20),
sageint(2),
CHECK(sageBETWEEN14AND28)
)
㈤ 为“学生”表的“年龄”字段增加有效性规则"年龄必须在18,,45岁之间"的SQL语句是
Alter table 数据库名.dbo.学生表 add constraint CK_学生表_年龄 check(年龄 between 18 and 45)
㈥ 用SQL创建表限制年龄 怎么限制
sage int check(sage between 15 and 30)
㈦ 在数据库中怎么编写查询年龄在20——30岁之间的会员的sql语句
select*
from会员
where年龄>=20and年龄<=30
“elect * from 学生信息 where age between 18 and 20”此句sql最前面少个s
应该是 select * from 学生信息 where age between 18 and 20 意思是
在学生信息中找年龄在18到20的学生所有字段信息。