當前位置:首頁 » 學校課程 » 課程表access

課程表access

發布時間: 2021-03-02 04:18:17

1. access里,新建查詢查詢課程表中學時為80或者課程號以30開頭的所有課程信息

摘要所謂管理,是指組織中的管理者,通過實施計劃、組織、人員配備、領導、控制等職能來版協調他人的活動,是他人同自權己一起實現既定目標的活動過程。管理學是系統研究管理活動的基本規律和一般方法的科學,它是適應現代社會化大生產的需要產生的,它的目的是:研究在現有的條件下,如何通過合理的組織和配置人、財、物等因素,提高生產力的水平。管理學是一門綜合性的交叉學科。管理過程的動態性、復雜性和管理對象的多樣性決定了管理所要藉助的知識、方法和手段要多樣化。

2. 1,用Access建立一個名為"學籍管理系統"的空資料庫,並在資料庫中建立第一個表對象:課程表.課程表的內容如

access任務我幫你實現

3. 如何用asp+access實現課程表查詢

<form name=form1 action=UserList.asp method=post target=_self>
<tbody>
<tr>
<td class=style5 height=30> 性別
<input name="sex" type="radio" value="男"> <img src="images/man.gif" width="8" height="12" hspace="1" vspace="1">
<input name="sex" type="radio" value="女" checked> <img src="images/women.gif" width="8" height="12" hspace="1" vspace="1">

年齡:
<select name=age_up>
<option value="0" selected>選擇</option>
<option value=18>18</option>
<option
value=19>19</option>
<option
value=20>20</option>
<option
value=21>21</option>

</select>

<select name=age_down>
<option value="0" selected>選擇</option>
<option value=18>18</option>
<option value=19>19</option>

</select>
身高:
<select
name=height_up>
<option value="0" selected>選擇</option>
<option value=150>150</option>
<option
value=155>155</option>

</select>
照片
<input type=checkbox name="photo" value="yes">
<input name="submitok" type=hidden id="submitok" value="b">

</td>
</tr>
<tr>
<td class=style5 height=25>體重:
<select name=weight_up>
<option value="0" selected>選擇</option>
<option
value=35>35</option>

</select>

<select
name=weight_down>
<option value="0"
selected>選擇</option>
<option
value=35>35</option>
<option

<option
value=125>125</option>
</select>
公斤居住地:
<select
name=nationality
onChange=javascript:chgCountry(form1.to_city_id);>
<option value="">--請選擇--</option>
<option
value="中國大陸" selected>中國大陸</option>
<option
value="香港">---香港</option>

<option value="埃及">埃及</option>
<option
value="南非">南非</option>
</select>
<select name=to_city_id>
<option value="" selected>--請選擇--</option>
<option
value="北京">北京</option>
<option value="上海">上海</option>
<option value="天津">天津</option>
<option
value="重慶">重慶</option>
<option value="廣東">廣東</option>
<option value="廣州">---廣州</option>
<option
value="深圳">---深圳</option>
<option
value="珠海">---珠海</option>

</select>
<input type=image
height=29 width=93
src="images/search.gif"
value=開始搜索 border=0 name=smtSearch> </td>
</tr>
</form>
<%
function mainsql(submitok,keyname,age_up,age_down,photo2,kind,sex)'sql變數查詢
dim a,sql,fstr,agekind
fstr="select username,birthday,sex,kind,grade,alltime,click,aboutus,photo_x,photo_d,photo_x_flag,photo_d_flag,regtime,refresh_time,flag from love_main order by refresh_time desc,regtime desc,grade desc"
If submitok="a" Then'按用戶名搜索
a=trim(replace(keyname,"'","''"))
fstr="select username,birthday,sex,kind,grade,alltime,click,aboutus,photo_x,photo_d,photo_x_flag,photo_d_flag,regtime,refresh_time,flag from love_main where flag<>'0' and username like '%"&a&"%' order by refresh_time desc,regtime desc,grade desc"
Elseif submitok="b" Then
fstr="select username,birthday,sex,kind,grade,alltime,click,aboutus,photo_x,photo_d,photo_x_flag,photo_d_flag,regtime,refresh_time,flag,height_ from love_main where flag<>'0'"

'性別

fstr=fstr & "and sex='"&sex&"'"

'年齡
dim a18,a19
age_up=Clng("0"&Request("age_up"))
age_down=Clng("0"&Request("age_down"))

if age_up<>0 and age_down<>0 then
if age_up>=age_down then
a18=year(now())-age_up+1
a19=year(now())-age_down+1
fstr=fstr & "and (year(birthday)>="&a18&" and year(birthday)<="&a19&")"
else
a18=year(now())-age_up+1
a19=year(now())-age_down+1
fstr=fstr & "and (year(birthday)>="&a19&" and year(birthday)<="&a18&")"
end if
else

end if

'身高范圍
dim height_up,height_down,heightall
height_up=Clng("0"&Request("height_up"))
height_down=Clng("0"&Request("height_down"))

if height_up<>0 and height_down<>0 then
if height_up>=height_down then
fstr=fstr & " and height_<="& height_up&" and height_>="& height_down
else
fstr=fstr & " and height_>="& height_up&" and height_<="& height_down
end if
elseif height_up<>0 Then
fstr=fstr & " and height_>="& height_up
elseIf height_down<>0 Then
fstr=fstr & " and height_<="& height_down

end if
'有照片
if photo2="yes" then
fstr=fstr & " and (((photo_x is not null or photo_x<>'') and photo_x_flag='1') or ((photo_d is not null or photo_d<>'') and photo_d_flag='1')) "
else
fstr=fstr
end if

'體重范圍
dim weight_up,weight_down
weight_up=Clng("0"&Request("weight_up"))
weight_down=Clng("0"&Request("weight_down"))
if weight_up<>0 and weight_down<>0 then
if weight_up>=weight_down then
fstr=fstr & " and weight_<="& weight_up & " and weight_>="& weight_down
else
fstr=fstr & " and weight_>="& weight_up & " and weight_<="& weight_down
end if
elseif weight_up<>0 Then
fstr=fstr & " and weight_>="&weight_up
elseIf weight_down<>0 Then
fstr=fstr & " and weight_<="&weight_down

end if
'地區
Dim nationality
to_city_id=Replace(Trim(Request("nationality")),",","''")
if nationality<>"" then fstr=fstr & "and area='"&nationality&"'"
Dim to_city_id

to_city_id=Replace(Trim(Request("to_city_id")),",","''")
if to_city_id<>"" then fstr=fstr & "and area='"& to_city_id &"'"

'總和
fstr=fstr & " order by refresh_time desc,regtime desc,grade desc"

End if
mainsql=fstr
end function
%>
裡面列表可以改過文字輸入.
這樣就可以查出來了.哎.累死了.

4. 求全國計算機等級考試二級教程Access資料庫這本書里用到的學生信息表、課程表、選課成績表等幾張表

不明白你的意思哈

5. 資料庫中建立學生表課程表選課表及其聯系

以 access 為例,建立數據表如下:

1、學生表

6. 用Access建立一個名為「學籍管理系統」的空資料庫,並在資料庫中建立第一個表對象:課程表。 求答案截圖

呵呵。加油!!

7. 用Access建立一個名為學籍管理系統有學生信息表和學生課程表

學號,學科號,是否考試,考試成績,備注,其他在圖中其他表中一致,考試成績數值型,3位整數,兩位小數。備注,字元型256個位元組。SQL語句,select 查找!

8. 1. 學生成績管理系統 設計一個ACCESS資料庫 至少要有4個表:學生表,教師表,課程表,成績表

你這個好像軟考裡面的設計題啊,這里有歷專年真題屬http://www.rkpass.cn/u.jsp?u=300765

9. 求計算機二級ACCESS(高等教育出版社的書)聯系時用的教師表,學生表,選課表,課程表等

不好意思,幫不了你,沒有學過二級access!

10. access2003中基於課程表查詢所有必修課怎麼查詢

你這樣抄問問題 不好回答襲,應該把你的表結構(都有哪些欄位 各表達的是什麼 特別是 你要查詢的主要欄位)表達出來 才好 給你直接回答……另外你想用什麼方式來做查詢?SQL 語句?還是 查詢設計視圖來設計這個查詢?

用創建一個查詢的方式 來選擇 你的課程表 在設計視圖中 加入 你要顯示的必要欄位 然後 以課程類型(是否必修課的欄位)設置 條件 必修課……

熱點內容
武漢大學學生會輔導員寄語 發布:2021-03-16 21:44:16 瀏覽:612
七年級學生作文輔導學案 發布:2021-03-16 21:42:09 瀏覽:1
不屑弟高考成績 發布:2021-03-16 21:40:59 瀏覽:754
大學畢業證會有成績單 發布:2021-03-16 21:40:07 瀏覽:756
2017信陽學院輔導員招聘名單 發布:2021-03-16 21:40:02 瀏覽:800
查詢重慶2018中考成績查詢 發布:2021-03-16 21:39:58 瀏覽:21
結業考試成績怎麼查詢 發布:2021-03-16 21:28:40 瀏覽:679
14中醫醫師資格筆試考試成績查分 發布:2021-03-16 21:28:39 瀏覽:655
名著賞析課程標准 發布:2021-03-16 21:27:57 瀏覽:881
北京大學商業領袖高端培訓課程 發布:2021-03-16 21:27:41 瀏覽:919