當前位置:首頁 » 編程語言 » sql約束年齡范圍
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

sql約束年齡范圍

發布時間: 2023-06-27 14:53:04

㈠ 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的學生所有欄位信息。