SQL建立成績方法


delimiter $$

create function grade(score int)
returns char;
begin
delclare gd char(1);
if score =300 then
set gd=”A”;
elseif score Between 280 and 299 then
set gd=”B”;
elseif score Between 250 and 279 then
set gd=”C”;
elseif score Between 200 and 249 then
set gd=”D”;
elseif
set gd=”E”;
end if;

return gd;
END
$$
delimiter ;

留言

這個網誌中的熱門文章

JAVE題目:產生10個亂數值,範圍為10-100之間,再利用「選擇排序法」進行由小到大的排序。並將排序後的結果列出來。

資料庫32範例:小戴修正。

StringBuilder跟StringBuffer的方法