1樓:匿名使用者
1.select t.sno,t.sname from s t
where t.***='女生' and t.age<20;
2樓:典渟司空嘉言
1.--建立乙個數來據庫名為自
『醫院』
create
database
醫院bai
go--開啟資料庫du
醫院use
醫院go
--建立醫生zhi表
create
table醫生(
編號int,
姓名varchar(20),
性別varchar(5),
出生日期dao
date,
職稱varchar(100)
notnull,
constraint
pk_id
primary
key(編號),
constraint
chk_***
check
(性別in
('男','女')))
--建立病人表
可參照醫生表
go--建立病歷表
create
table病歷(
idint
identity
(1,1),
病人編號
int,
醫生編號
int,
病歷描述
varchar(200),
constraint
pk_id
primary
key(id),
constraint
fk_id1
foreign
key(病人編號),
constraint
fk_id2
primary
key(醫生編號)
)2.插入語句格式如下:
insert
into
醫生values(100001,'杜醫生','男','1963-5-18','副主任醫師')
加分求,一道資料庫查詢的題目,請哪位幫做一下。要詳細語句,謝
1.select t.sno,t.sname from s t where t.女生 and t.age 20 1.建立乙個數來據庫名為自 醫院 create database 醫院bai go 開啟資料庫du 醫院use 醫院go 建立醫生zhi表 create table醫生 編號int,姓名v...
關於sql資料庫的題目求幫忙,關於SQL資料庫的題目,求幫忙
du1 zhiselect from c where ame like 資料dao庫 2 select a.s a.sname from s aleft join sc b on a.s b.s left join c on b.c c.c where c.ame maths 3 select a....
求資料庫高手幫忙,有80張表,每張裡最少的30 100條記錄,每張都有列CAS號和Library
create table 新錶名 as select cas,library from 表1union select cas,library from 表2union select cas,library from 表3.一直union到第80個表吧 union會去掉重複資料,如果用union al...