sql55
『壹』 sql server 把55~60分的分數提高5分,下面的語句對嗎 Update grade s
SQL 中不支持 += 這樣寫法,會報錯
Update grade set score = score + 5 where score>=55 and score<=60
這樣寫就可以了
『貳』 SQL語句求救啊 55
開始寫的錯了
select name from 表名 where time>dateadd(day,-180,getdate()) and state='確認'
『叄』 windows 無法啟動Msql55 服務(位於本地計算機上)錯誤1067:進程意外終止 怎麼解決急!
原因就在你之前裝的那個mysql上,在C盤的Windows目錄下找到my.ini文件,直接刪除,然後再重裝套件或者單獨安裝就好了,我這剛弄好,wampserver親測可用,試試吧。
『肆』 在sql中如何用命令或循環計算同一個學號的總成績 如,學號1001 對應有五科成績 分別是55,66,77,88,99
你看這樣的思路可以不,
用sql查出5門成績 where 學號1001 用datatable 接收 後
成績1 = datatable.rows[0]["成績1"].ToString();
成績2 = datatable.rows[0]["成績2"].ToString();
成績3 = datatable.rows[0]["成績3"].ToString();
成績4 = datatable.rows[0]["成績4"].ToString();
成績5 = datatable.rows[0]["成績5"].ToString();
再把string類型 轉成INT類型
sum = 成績1+成績2+成績3+成績4+成績5
『伍』 SQL資料庫
1.select * from student where age>30;
2.select * from course where teacher='王老師';
3.selcet name,age from student group by age;
4.select * from student where name like '張%';
5.select Student_no,name,source_name,results from student,source,result where student.student_no=result.student_no and result.source_no=source.source_no;
6.insert into student values (『007』,『成龍』,『男』,55);
7.update source set classhour += 16 where source_no='K6';
8.delete from source where classhour<64;
9.create view v01
as select * from student where between 30 end 50;//創建視圖V01
select * from v01;//查詢視圖V01
10.create clustered index ix01 on student setdent_no;
11.if exists (select * from sysobjects where name='p01'
drop procere p01
go
create procere p01
@sex
as
select * from student sex=@sex;
12.create trigger t01
on student
after insert
as
print '你已經成功插入了一條學生記錄!』
go
insert into t01 values (『008』,『劉備』,『男』,42)---你已經成功插入了一條學生記錄!
好了,就是存儲過程我不太確定。
『陸』 SQL求1~10之間的和為什麼會等於55
1+2+3+4+5+6+7+8+9+10=(1+9)+(2+8)+(3+7)+(4+6)+5+10=55
所以就是55。
(我小學畢業了,當時五年級算的是從1~100的求和。)