1樓:
--1.1
if db_id('***') is not null
drop database ***
gocreate database ***
on primary
( name=***_dat,
filename='e:\***.mdf',
size=2,
maxsize=30,
filegrowth=2
)log on
( name=***_log,
filename='e:\***_log.ldf',
size=3,
maxsize=unlimited,
filegrowth=20%)go
--1.2
alter database ***
modify file
( name=***_dat,
maxsize=100)go
alter database ***
add log file
( name=***_log2,
filename='e:\***_log2.ldf',
size=1,
maxsize=10,
filegrowth=2)go
--2.1
if object_id('yyy','u') is not null
drop table yyy
gocreate table yyy
( yid char(8) primary key,
yname varchar(20) not null,
yex char(6) not null,
yhere char(20) null,
yinfo varchar(100) null)go
--2.2,表名重複了,應該是zzz吧
if object_id('zzz','u') is not null
drop table zzz
gocreate table zzz
( id char(10) primary key,
yid char(10) not null,
[count] smallmoney default 0,
cdate smalldatetime null)go
--3.1,題目有誤,根據插入的資料個數及型別,應該是插進第一個表吧
insert into yyy
select '111111','sdwaw','zzzw','qwqw','aaa'
go--3.2,zzz表指的哪個表?這裡假設為第一個表,因為只有第一個表中有yname欄位;
update yyy set yname='jack' where yid='sdsd'
go--3.3,你說的yyy我理解為第二個表,因為只有第二個表中有count欄位;
delete from zzz where [count]<13
go--4
select id,yname,[count],cdate into querynew from yyy a,zzz b
where a.yid=b.yid
go--5
if object_id('queryyyy','p') is not null
drop procedure queryyyy
gocreate procedure queryyyy @yid char(10)
asselect * from yyy where yid=@yid
go--6
declare @n int
declare @sum int
set @n=1
set @sum=0
while @sum<1000
begin
set @sum=@sum+@n
set @n=@n+2
endselect @sum 求和,@n ngo
2樓:匿名使用者
使用的是什麼資料庫 不同的資料庫 建立table時欄位都有差別,更別說sp的語法了
另外 你第二題的第一張表應該是zzz吧
3 .1)insert into zzz values('111111','sdwaw','zzzw','qwqw','aaa')
2)update zzz set yname='jack' where yid='sdsd'
3)delete from yyy where count<134.第四題也沒寫清楚2個表之間的關係,是要求使用哪種連線方式
急!php連結資料庫問題
你已經填好了.dbhost 122.226.132.2 dbname wlldrk dbuser a0710091934 dbpass 10965561 就跟你手上的一樣啊。已經可以用了 dbhost 122.226.132.2 資料i庫伺服器ip地址 dbname wlldrk 資料庫名稱 dbu...
asp查詢資料庫的問題。。急答案滿意追加100分
sub ssrenwu2 sqls select from ssrw where 1 1 if request.form zt 0 then end if if request.form zd 0 then end if if request.form ip 0 then end if sqls s...
急!!高手來幫忙翻譯下(關於資料庫的)20分
很久以前,羅馬人彼此交流都用拉丁語。小學生都用拉丁語學讀和寫。課本也都是拉丁文的。一些羅馬人去了世界其他的地方,也把語言傳播到了世界其他地方。於是拉丁語成了世界語。其他國家的人們不會以同樣的方式說拉丁語。在羅馬人所到的地方,他們漸漸改變了自己的語言。隨著時間的流逝,最後羅馬人也不再說拉丁語。新的語言...