数据库系统概论

Size: px
Start display at page:

Download "数据库系统概论"

Transcription

1 信息学院 2015 级,2017-2~6, 教 2221 数据库系统概论 孟小峰中国人民大学

2 数据库系统概论 An Introduction to Database Systems 第三章 SQL 语言 ( 之高级查询部分 ) 2017, 3, 21

3 Replay Time SELECT 语句结构 SELECT FROM WHERE 投影 卡氏积 选择 基本查询 SELECT all vs. SELECT distinct Computation in SELECT 连接查询, 外连接 集合查询, 交, 并, 差 嵌套查询,IN

4 嵌套查询 (1) Example: Find the names of all students who take at least one course offered by the CS department. select Name from Students s, Enrollment e where s.ssn = e.ssn and e.course_no in (select Course_no from Courses where Dept_Name = 'CS')

5 嵌套查询 (2) The previous query is a nested query. The query outside is an outer query and the query nested under the outer query is an inner query. Multiple nestings are allowed. The semantics of the above query is to evaluate the inner query first and evaluate the outer query last. Many nested queries have equivalent nonnested versions.

6 嵌套查询 (3) The previous query is equivalent to: (1) select Name from Students s, Enrollment e, Courses c where s.ssn = e.ssn and e.course_no = c.course_no and c.dept_name = 'CS (2) select Name from Students where SSN in (select SSN from Enrollment where Course_no in (select Course_no from Courses where Dept_Name = 'CS'))

7 嵌套查询 (4) Example: Consider the relations: Employees (SSN, Name, Age), Dependents (Name, Sex, ESSN) Find the names of all employees who has a dependent with the same name. select Name from Employees where Name in (select Name from Dependents where ESSN = SSN) Evaluation of correlated queries: for each tuple in the outer query, evaluate the inner query once.

8 嵌套查询 (5) Definition: If some attributes of a relation declared in the from clause of an outer query are referenced in the where clause of an inner query, then the two queries are said to be correlated, and the inner query is called a correlated inner query.

9 嵌套查询 (6) The scoping rule of attribute names: select... from R1,..., Rk where... (select... from S1,..., Sm where S1.A = R2.B and C = D and... ) (1) If attribute C is not an attribute in S1,..., Sm, and C is an attribute in some Ri, then C = Ri.C. (2) If C is in both Sj and Ri, then C = Sj.C.

10 嵌套查询 (7) In Oracle, in accepts multi-column list. Example: Find all enrollments that have 25 years old students taking CS courses. select * from Enrollment where (SSN, Course_no) in (select s.ssn, c.course_no from Students s, Courses c where s.age = 25 and c.dept_name = 'CS')

11 嵌套查询 (8) Example: Find the names of those students who are 18 or younger and whose GPA is higher than the GPA of some students who are 25 or older. select Name from Students where Age <= 18 and GPA >some (select GPA from Students where Age >= 25)

12 嵌套查询 (9) Other set comparison operators: <some, <=some, >=some, =some, <>some, >any, <any, <=any, >=any, =any, <>any, >all, <all, <=all, >=all, =all, <>all some and any have identical meaning.

13 嵌套查询 (10) =some is equivalent to in <>some is not equivalent to not in. <>all is equivalent to not in. Let x = a and S = {a, b}. Then x <>some S is true but x not in S is false. x <>all S is also false.

14 嵌套查询 -EXISTS exists ( ) is true if the set ( ) is not empty. exists ( ) is false if the set ( ) is empty. not exists ( ) is true if the set ( ) is empty. not exists ( ) is false if the set ( ) is not empty.

15 嵌套查询 -EXISTS(1) Example: Find all students who take at least one course. select * from Students s where SSN in (select * from Enrollment ) select * from Students s where exists (select * from Enrollment where SSN = s.ssn)

16 嵌套查询 -EXISTS(2) The previous query is equivalent (if redundancy is ignored) to: (1) select s.* from Students s, Enrollment e where s.ssn = e.ssn (2) select * from Students where SSN in (select SSN from Enrollment) Question: Which query is likely to have redundancy?

17 举例 Students Enrollment Result(1) s1 s1 c1 s1 s2 s1 c2 s1 s3 s2 c1 s2 s2 c3 s2 Result(2) s1 s2

18 嵌套查询 -EXISTS(3) Find all students who do not take CS532. select * from Students s where not exists (select * from Enrollment where SSN = s.ssn and Course_no = 'CS532') This query is equivalent to: select * from Students where SSN not in (select SSN from Enrollment where Course_no = 'CS532')

19 嵌套查询 -EXISTS(4) Find all the students who take all courses. Students (Enrollment Course): select * from Students s where not exists (select * from Courses c where not exists (select * from Enrollment where SSN = s.ssn and Course_no = c.course_no))

20 嵌套查询 -EXISTS(5) Students Enrollment Courses s1 s1 c1 c1 s2 s1 c2 c2 s1 c3 c3 s2 c1 s2 c3

21 NOT EXISTS 比较举例 查询选修了全部课程的学生号码和姓名 关系代数 元组关系演算 SQL (π Sno,Cno (SC) π Cno (Course)) π Sno,Sname (Student) RANGE OF c is Course RANGE OF sc is SC RANGE OF s is Student {XS.Sname, s.sno c sc (s.sno=sc.sno sc.cno=c.cno) } select Sno, Sname from Student s where not exists (select * from Couse c where not exists (select * from SC sc where s.sno = sc.sno and sc.cno = c.cno)) 74

22 嵌套查询 -EXISTS(4) Find all the students who take all courses. select * from Students s where not exists (select * from Courses c where not exists (select * from Enrollment where SSN = s.ssn and Course_no = c.course_no)) Interpretation: A student si takes all courses if and only if for this student, we can not find a course cj such that si does not take cj.

23 嵌套查询 -EXISTS(8) Find all the students who take all courses. Students (Enrollment Course): select * from Students s where not exists (select * from Courses c where not exists (select * from Enrollment where SSN = s.ssn and Course_no = c.course_no))

24 嵌套查询 -EXISTS(9) Example: Find the names and GPAs of those students who take all courses taken by a student with SSN = select Name, GPA from Students s where not exists (select Course_no from Enrollment e1 where SSN = ' and not exists (select * from Enrollment e2 where SSN = s.ssn and Course_no = e1.course_no))

25 嵌套查询 -EXISTS(10) Exercises: Consider relations: Employees (SSN, Name, Age, Salary) Projects (Proj_no, Name, Manager_name) Works (SSN, Proj_no, Start-Date) Find the names of those employees who participate in all projects. Find the names of those projects managed by Smith that are participated in by all employees under 40.

26 嵌套查询 -EXISTS(11) Find the names of those employees who participate all projects. select name from Employees e where not exists (select * from Projects p where not exists (select * from Works w where e.ssn = w.ssn and w.proj_no = p.proj_no))

27 嵌套查询 -EXISTS(12) Find the names of those projects managed by Smith that are participated by all employees under 40. m-name=smith Project (Works SSN ( age<40 Employees): select name from Projects p where manager_name = Smith and not exists (select * from Employees e where Age < 40 and not exists (select * from Works w where e.ssn = w.ssn and w.proj_no = p.proj_no))

28 Set (Aggregate) Functions (1) SQL supports five aggregate functions: Name Argum. type Result type Description avg numeric numeric average count any numeric count min char or num. same as arg minimum max char or num. same as arg maximum sum numeric numeric sum Oracle also supports stddev and variance.

29 Set (Aggregate) Functions (2) Example: Find the average, the minimum and the maximum GPAs among all students' GPAs. select avg(gpa), min(gpa), max(gpa) from Students Example: Find the number of students who are 17 years old. select count(*) from Students where Age = 17

30 Set (Aggregate) Functions (3) The last query is equivalent to select count(ssn) from Students where Age = 17 but may not be equivalent to select count(name) from Students where Age = 17 Set functions, except count(*), ignore null values.

31 Set (Aggregate) Functions (4) Example: Find the number of courses offered. select count(distinct Course_no) from Enrollment Note that the above is different from select distinct count(course_no) from Enrollment count(distinct *) is not allowed.

32 Set (Aggregate) Functions (5) Example: Find the SSNs and names of all students who take 5 or more courses. select SSN, Name from Students s where 5 <= (select count(*) from Enrollment where SSN = s.ssn)

33 Question Time Example: Find the names of all students who have the highest GPA. select Name from Students where GPA= (select max(gpa) from Students)

34 Set (Aggregate) Functions (6) GROUPING TUPLES Find the average GPA for students of different age groups. select Age, avg(gpa) from Students group by Age One tuple will be generated for each distinct value of age.

35 Set (Aggregate) Functions (7) STUDENTS SSN Name Age GPA John Tom Tom Bill Mary

36 Set (Aggregate) Functions (7) STUDENTS RESULT SSN Name Age GPA Age avg(gpa) John Tom Tom Mary Bill

37 Set (Aggregate) Functions (8) When group by is used, each attribute in the select clause must have a single atomic value for each group of common group by values. Each attribute in the select clause should be either a grouping attribute or an attribute on which a set function is applied. Every grouping attribute should be listed in the select clause.

38 Set (Aggregate) Functions (9) Example: The following is an illegal query: select Age, SSN, avg(gpa) from Students group by Age

39 Set (Aggregate) Functions STUDENTS RESULT SSN Name Age GPA Age SSN avg(gpa) John ? Tom ? Tom ? Bill Mary

40 Set (Aggregate) Functions (9) Example: The following is an illegal query: select SSN, Age, avg(gpa) from Students group by Age

41 Set (Aggregate) Functions (9) Example: The following is an illegal query: select SSN, Age, avg(gpa) from Students group by SSN, Age

42 Set (Aggregate) Functions (10) Example: Find the SSN, name and the number of credit hours each student still needs to graduate. Courses (Course_no, Title, Dept_Name, Credit_Hour) Enrollment (SSN, Course_no, Grade, Semester)

43 Set (Aggregate) Functions (11) Assume that each student needs 120 credit hours to graduate. select SSN, Name, sum(credit_hour) Credit-Needed from Students s, Enrollment e, Courses c where s.ssn = e.ssn and e.course_no = c.course_no group by s.ssn, Name

44 Set (Aggregate) Functions (12) Example: Find the number of students of each age group and output only those groups having more than 50 members. select Age, count(*) from Students group by Age having count(*) > 50 Conditions on set functions are specified in the having clause.

45 Set (Aggregate) Functions (12-1) Example: Find the number of students in department CS of each age group and output only those groups having more than 50 members. select Age, count(*) from Students where Dept_Name= CS and count(*) > 50 group by Age Wrong!!!!!!!! Conditions on set functions are specified in the having clause.

46 Set (Aggregate) Functions (12-2) Example: Find the number of students in department CS of each age group and output only those groups having more than 50 members. select Age, count(*) from Students where Dept_Name= CS group by Age having count(*) > 50 Conditions on set functions are specified in the having clause.

47 Set (Aggregate) Functions (13) Example: Find the SSNs and names of all students who take 5 or more courses. select SSN, Name from Students s where 5 <= (select count(*) from Enrollment where SSN = s.ssn) select SSN, Name from Students s, Enrollment e where e.ssn = s.ssn group by SSN, Name having count(*) >=5

48 Set (Aggregate) Functions (14) Aggregate functions can be nested in two levels. Example: Find the largest average student GPA among all departments. select max(avg(gpa)) from Students group by dept_name

49 Set (Aggregate) Functions (15) Aggregate functions can not be nested. select avg(gpa) from Students group by dept_name having avg(gpa) >=all (select avg(gpa) from Students group by dept_name )

50 Derived Relations (1) SQL-92 allows a subquery expression to be used in from clause. If such an expression is used, then the result relation must be given a name, and the attributes can be renamed ( select dept_name, avg(gpa) from Students group by dept_name ) as result (dept_name, avg-gpa)

51 Derived Relations(2) Example Select dept_name, avg-gpa From ( select dept_name, avg(gpa) from Students group by dept_name ) as result (dept_name, avg-gpa)

52 Derived Relations(3) 有了导出关系, having 子句可以省略. 我们可以在 from 子句计算临时关系 result Select dept_name From ( select dept_name, avg(gpa) from Students group by dept_name ) as result (dept_name, avg-gpa) Where avg-gpa> 3.0

53 Ordering Tuples in Output (1) Example: Find the names of all students and order the names in ascending order. select Name from Students order by Name asc ascending order is the default in order by clause.

54 Ordering Tuples in Output (2) Example: Find all the students whose GPA is higher than 3.5 and order the result in descending order by GPA, and for students having the same GPA, order them in ascending order by their names. select * from Students where GPA > 3.5 order by GPA desc, Name asc

55 Six Clauses of SQL Queries (1) select target-attributes from table-list where regular-conditions group by grouping-attributes having conditions-on-set-functions order by attribute-list Only the first two clauses are mandatory.

56 Six Clauses of SQL Queries (2) Evaluation of a six-clause query: 1. Form all combinations of tuples from the relations in the from clause (Cartesian product). 2. Among all the tuples generated in step 1, find those that satisfy the conditions in the where clause. 3. Group the remaining tuples based on the grouping attributes.

57 Six Clauses of SQL Queries (3) 4. Among all the tuples generated in step 3, find those that satisfy the conditions in the having clause. 5. Using the order by clause to order the tuples produced in step Project on the desired attribute values as specified in the select clause.

58 Six Clauses of SQL Queries (4) Find the average GPAs of students of different age groups. Only students younger than 35 are considered and only groups with the average GPAs higher than 3.2 are listed. The listing should be in ascending age values. select Age, avg(gpa) from Students where Age < 35 group by Age having avg(gpa) > 3.2 order by Age

59 Full Select Statement Syntax Select General Form: Subselect {union [all] Subselect} [order by result_column [asc desc] {, result_column [asc desc]}] Subselect General Form: select [all distinct] expression {, expression} from tablename [corr_name] {, tablename [corr_name]} [where search_condition] [group by column {, column}] [having search_condition_on_set_function]

60 An Interesting SQL Query (1) Example: Consider two tables: Agents(aid, aname, city, percent) Orders(ordno, month, cid, aid, pid, qty, dollars) Find the aid and total commission of each agent. An agent s total commission is computed based on his/her commission rate and total sale (in dollars).

61 An Interesting SQL Query (2) Solution 1: select a.aid, a.percent*sum(dollars)*0.01 commission from agents a, orders o where a.aid = o.aid group by a.aid, a.percent

62 An Interesting SQL Query (3) Solution 2: select a.aid, temp.total*percent*0.01 commission from (select aid, sum(dollars) total from orders group by aid) temp, agents a where a.aid = temp.aid A select query in the from clause is known as an inline view.

63 Top-N Query Top-N query finds the N records with the largest or smallest values under an attribute. Example: Find the three students with the highest GPA. (Top 3 students) select rownum, name, GPA from (select * from students order by GPA desc) where rownum <= 3 rownum is a pseudo-column associated with the table in the from clause.

64 Top-N Query Top-N query finds the N records with the largest or smallest values under an attribute. Example: Find the three students with the highest GPA. (Top 3 students) select * from students order by GPA desc LIMIT 0, 3

65 Dynamic Query Allow condition values to be provided on the fly SQL> select name, GPA from students 2 where dept_name = &cname and GPA <= &cgpa; Enter value for cname: CS Enter value for cgpa: 3.5 show result You can save the query in a file and run it in SQL*Plus.

66 The Expressive Power of SQL Query Language (1) Definition: A relational query language L is relationally complete if every query that can be expressed in the relational algebra can also be expressed in L. Theorem: SQL is relationally complete.

67 The Expressive Power of SQL Query Language (2) SQL is strictly more powerful than the relational algebra since SQL also supports set functions and the ordering of tuples. sum(), count(), avg() and order by cannot be expressed in the relational algebra.

68 The Expressive Power of SQL (3) SQL is considered to be a non-procedural language. Students.SSN, Name, Title (( Students.Dept-Name = `CS (Students) Enrollment) Enrollment.Course_no = Courses.Course_no Courses) select s.ssn, s.name, c.title from Students s, Enrollment e, Courses c where s.dept-name = 'CS' and s.ssn = e.ssn and e.course_no = c.course_no

69 The Expressive Power of SQL (4) SQL is less powerful than programming language. For example, SQL cannot handle recursive queries. Example: Consider Employees(SSN, Name, Salary, Manager-SSN). A recursive query: Find the names of all managers, direct or indirect, of John.

70 第三章习题 5, 补充习题 dbhw2 中的查询练习

Microsoft PowerPoint - 05-SQL3-advanced.ppt

Microsoft PowerPoint - 05-SQL3-advanced.ppt SQL: Interactive Queries (2) Prof. Weining Zhang Cs.utsa.edu Aggregate Functions Functions that take a set of tuples and compute an aggregated value. Five standard functions: count, min, max, avg, sum

More information

SQL: Interactive Queries (2)

SQL: Interactive Queries (2) SQL: Interactive Queries (2) Prof. Weining Zhang Cs.utsa.edu Aggregate Functions Functions that take a set of tuples and compute an aggregated value. Five standard functions: count, min, max, avg, sum

More information

数据库系统概论

数据库系统概论 数据库系统概论 An Introduction to Database Systems 第三章 SQL 语言 ( 之基本查询部分 ) 2016, 3, 17 上节课 SQL: SQL86,SQL89,SQL92,SQL99 DDL,DML,DCL DDL 基本表, 索引, 视图 CREATE TABLE,CREATE INDEX ALTER TABLE, DROP TABLE, DROP INDEX

More information

untitled

untitled Database System Principle Database System Principle 1 SQL 3.1 SQL 3.2-3.3 3.4 3.5 3.6 Database System Principle 2 3.1 SQL SQL Structured Query Language SQL Database System Principle 3 SQL 3.1.1 SQL 3.1.2

More information

数据库系统概论

数据库系统概论 第 2 章 关 系 数 据 库 孟 小 峰 xfmeng@ruc.edu.cn 信 息 学 院 2014/3/4 上 节 课 关 系 完 整 性 实 体 完 整 性 / 主 码 完 整 性 参 照 完 整 性 / 外 码 完 整 性 函 数 依 赖 用 户 定 义 完 整 性 关 系 代 数 基 本 运 算 : 选 择, 投 影, 笛 卡 尔 积, 并, 差 导 出 运 算 : 交, 连 接, 除

More information

untitled

untitled OO 1 SQL Server 2000 2 SQL Server 2000 3 SQL Server 2000 DDL 1 2 3 DML 1 INSERT 2 DELETE 3 UPDATE SELECT DCL 1 SQL Server 2 3 GRANT REVOKE 1 2 1 2 3 4 5 6 1 SQL Server 2000 SQL Server SQL / Microsoft SQL

More information

DB2 (join) SQL DB2 11 SQL DB2 SQL 9.1 DB2 DB2 ( ) SQL ( ) DB2 SQL DB2 DB2 SQL DB2 DB2 SQL DB2 ( DB2 ) DB2 DB2 DB2 SQL DB2 (1) SQL (2) S

DB2 (join) SQL DB2 11 SQL DB2 SQL 9.1 DB2 DB2 ( ) SQL ( ) DB2 SQL DB2 DB2 SQL DB2 DB2 SQL DB2 ( DB2 ) DB2 DB2 DB2 SQL DB2 (1) SQL (2) S 9 DB2 优化器 DB2 SQL select c1 c2 from ( DB2 )??? DB2?!?, no no DB2 I/O ( transrate overhead ) SQL DML (INSERT UPDATE DELETE) DB2 (access plan) DB2 (join) SQL DB2 11 SQL DB2 SQL 9.1 DB2 DB2 ( 728 747 ) SQL

More information

ENGG1410-F Tutorial 6

ENGG1410-F Tutorial 6 Jianwen Zhao Department of Computer Science and Engineering The Chinese University of Hong Kong 1/16 Problem 1. Matrix Diagonalization Diagonalize the following matrix: A = [ ] 1 2 4 3 2/16 Solution The

More information

PowerPoint Presentation

PowerPoint Presentation ITM omputer and ommunication Technologies Lecture #4 Part I: Introduction to omputer Technologies Logic ircuit Design & Simplification ITM 計算機與通訊技術 2 23 香港中文大學電子工程學系 Logic function implementation Logic

More information

穨control.PDF

穨control.PDF TCP congestion control yhmiu Outline Congestion control algorithms Purpose of RFC2581 Purpose of RFC2582 TCP SS-DR 1998 TCP Extensions RFC1072 1988 SACK RFC2018 1996 FACK 1996 Rate-Halving 1997 OldTahoe

More information

目錄 C ontents Chapter MTA Chapter Chapter

目錄 C ontents Chapter MTA Chapter Chapter 目錄 C ontents Chapter 01 1-1 MTA...1-2 1-2...1-3 1-3...1-5 1-4...1-10 Chapter 02 2-1...2-2 2-2...2-3 2-3...2-7 2-4...2-11...2-16 Chapter 03 3-1...3-2 3-2...3-8 3-3 views...3-16 3-4...3-24...3-33 Chapter

More information

Oracle Database 10g: SQL (OCE) 的第一堂課

Oracle Database 10g: SQL (OCE) 的第一堂課 商 用 資 料 庫 的 第 一 堂 課 中 華 大 學 資 訊 管 理 系 助 理 教 授 李 之 中 http://www.chu.edu.tw/~leecc 甲 骨 文 俱 樂 部 @Taiwan Facebook 社 團 https://www.facebook.com/groups/365923576787041/ 2014/09/15 問 題 一 大 三 了, 你 為 什 麼 還 在 這

More information

untitled

untitled Co-integration and VECM Yi-Nung Yang CYCU, Taiwan May, 2012 不 列 1 Learning objectives Integrated variables Co-integration Vector Error correction model (VECM) Engle-Granger 2-step co-integration test Johansen

More information

Chn 116 Neh.d.01.nis

Chn 116 Neh.d.01.nis 31 尼 希 米 书 尼 希 米 的 祷 告 以 下 是 哈 迦 利 亚 的 儿 子 尼 希 米 所 1 说 的 话 亚 达 薛 西 王 朝 二 十 年 基 斯 流 月 *, 我 住 在 京 城 书 珊 城 里 2 我 的 兄 弟 哈 拿 尼 和 其 他 一 些 人 从 犹 大 来 到 书 珊 城 我 向 他 们 打 听 那 些 劫 后 幸 存 的 犹 太 人 家 族 和 耶 路 撒 冷 的 情 形

More information

BC04 Module_antenna__ doc

BC04 Module_antenna__ doc http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 1 of 10 http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 2 of 10 http://www.infobluetooth.com TEL:+86-23-68798999

More information

Microsoft PowerPoint - CH 04 Techniques of Circuit Analysis

Microsoft PowerPoint - CH 04 Techniques of Circuit Analysis Chap. 4 Techniques of Circuit Analysis Contents 4.1 Terminology 4.2 Introduction to the Node-Voltage Method 4.3 The Node-Voltage Method and Dependent Sources 4.4 The Node-Voltage Method: Some Special Cases

More information

28 2015 3 1 2 2011-2012 38 985 31 EXCEL 2005-2010 985 3 985 2011 2012 EXCEL 38 985 31 985 2011-2012 38 985 1. 38 985 90 20 70 1 2005-2010 2011-2012 13

28 2015 3 1 2 2011-2012 38 985 31 EXCEL 2005-2010 985 3 985 2011 2012 EXCEL 38 985 31 985 2011-2012 38 985 1. 38 985 90 20 70 1 2005-2010 2011-2012 13 36 3 Vol. 36 No.3 2 0 1 5 5 May 2 0 1 5 985 2011-2012 361005 2011-2012 985 985 985 2005-2012 985 985 G645 A 1001-4519 2015 03-0027 - 12 DOI 10. 14138 /j. 1001-4519. 2015. 03. 002712 2005-2010 985 2012

More information

2015年4月11日雅思阅读预测机经(新东方版)

2015年4月11日雅思阅读预测机经(新东方版) 剑 桥 雅 思 10 第 一 时 间 解 析 阅 读 部 分 1 剑 桥 雅 思 10 整 体 内 容 统 计 2 剑 桥 雅 思 10 话 题 类 型 从 以 上 统 计 可 以 看 出, 雅 思 阅 读 的 考 试 话 题 一 直 广 泛 多 样 而 题 型 则 稳 中 有 变 以 剑 桥 10 的 test 4 为 例 出 现 的 三 篇 文 章 分 别 是 自 然 类, 心 理 研 究 类,

More information

Stochastic Processes (XI) Hanjun Zhang School of Mathematics and Computational Science, Xiangtan University 508 YiFu Lou talk 06/

Stochastic Processes (XI) Hanjun Zhang School of Mathematics and Computational Science, Xiangtan University 508 YiFu Lou talk 06/ Stochastic Processes (XI) Hanjun Zhang School of Mathematics and Computational Science, Xiangtan University hjzhang001@gmail.com 508 YiFu Lou talk 06/04/2010 - Page 1 Outline 508 YiFu Lou talk 06/04/2010

More information

untitled

untitled 數 Quadratic Equations 數 Contents 錄 : Quadratic Equations Distinction between identities and equations. Linear equation in one unknown 3 ways to solve quadratic equations 3 Equations transformed to quadratic

More information

<4D6963726F736F667420576F7264202D205F4230365FB942A5CEA668B443C5E9BB73A740B5D8A4E5B8C9A552B1D0A7F75FA6BFB1A4ACFC2E646F63>

<4D6963726F736F667420576F7264202D205F4230365FB942A5CEA668B443C5E9BB73A740B5D8A4E5B8C9A552B1D0A7F75FA6BFB1A4ACFC2E646F63> 運 用 多 媒 體 製 作 華 文 補 充 教 材 江 惜 美 銘 傳 大 學 應 用 中 文 系 chm248@gmail.com 摘 要 : 本 文 旨 在 探 究 如 何 運 用 多 媒 體, 結 合 文 字 聲 音 圖 畫, 製 作 華 文 補 充 教 材 當 我 們 在 進 行 華 文 教 學 時, 往 往 必 須 透 過 教 案 設 計, 並 製 作 補 充 教 材, 方 能 使 教 學

More information

6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM

6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM CHAPTER 6 SQL SQL SQL 6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM 3. 1986 10 ANSI SQL ANSI X3. 135-1986

More information

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl SKLOIS (Pseudo) Preimage Attack on Reduced-Round Grøstl Hash Function and Others Shuang Wu, Dengguo Feng, Wenling Wu, Jian Guo, Le Dong, Jian Zou March 20, 2012 Institute. of Software, Chinese Academy

More information

東莞工商總會劉百樂中學

東莞工商總會劉百樂中學 /2015/ 頁 (2015 年 版 ) 目 錄 : 中 文 1 English Language 2-3 數 學 4-5 通 識 教 育 6 物 理 7 化 學 8 生 物 9 組 合 科 學 ( 化 學 ) 10 組 合 科 學 ( 生 物 ) 11 企 業 會 計 及 財 務 概 論 12 中 國 歷 史 13 歷 史 14 地 理 15 經 濟 16 資 訊 及 通 訊 科 技 17 視 覺

More information

國 立 政 治 大 學 教 育 學 系 2016 新 生 入 學 手 冊 目 錄 表 11 國 立 政 治 大 學 教 育 學 系 博 士 班 資 格 考 試 抵 免 申 請 表... 46 論 文 題 目 申 報 暨 指 導 教 授... 47 表 12 國 立 政 治 大 學 碩 博 士 班 論

國 立 政 治 大 學 教 育 學 系 2016 新 生 入 學 手 冊 目 錄 表 11 國 立 政 治 大 學 教 育 學 系 博 士 班 資 格 考 試 抵 免 申 請 表... 46 論 文 題 目 申 報 暨 指 導 教 授... 47 表 12 國 立 政 治 大 學 碩 博 士 班 論 國 立 政 治 大 學 教 育 學 系 2016 新 生 入 學 手 冊 目 錄 一 教 育 學 系 簡 介... 1 ( 一 ) 成 立 時 間... 1 ( 二 ) 教 育 目 標 與 發 展 方 向... 1 ( 三 ) 授 課 師 資... 2 ( 四 ) 行 政 人 員... 3 ( 五 ) 核 心 能 力 與 課 程 規 劃... 3 ( 六 ) 空 間 環 境... 12 ( 七 )

More information

ebook 165-5

ebook 165-5 3 5 6 7 8 9 [ 3. 3 ] 3. 3 S Q L S Q 4. 21 S Q L S Q L 4 S Q 5 5.1 3 ( ) 78 5-1 3-8 - r e l a t i o n t u p l e c a r d i n a l i t y a t t r i b u t e d e g r e e d o m a i n primary key 5-1 3 5-1 S #

More information

Microsoft Word - (web)_F.1_Notes_&_Application_Form(Chi)(non-SPCCPS)_16-17.doc

Microsoft Word - (web)_F.1_Notes_&_Application_Form(Chi)(non-SPCCPS)_16-17.doc 聖 保 羅 男 女 中 學 學 年 中 一 入 學 申 請 申 請 須 知 申 請 程 序 : 請 將 下 列 文 件 交 回 本 校 ( 麥 當 勞 道 33 號 ( 請 以 A4 紙 張 雙 面 影 印, 並 用 魚 尾 夾 夾 起 : 填 妥 申 請 表 並 貼 上 近 照 小 學 五 年 級 上 下 學 期 成 績 表 影 印 本 課 外 活 動 表 現 及 服 務 的 證 明 文 件 及

More information

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc References (Section 5.2) Hsuan-Tien Lin Deptartment of CSIE, NTU OOP Class, March 15-16, 2010 H.-T. Lin (NTU CSIE) References OOP 03/15-16/2010 0 / 22 Fun Time (1) What happens in memory? 1 i n t i ; 2

More information

4. 每 组 学 生 将 写 有 习 语 和 含 义 的 两 组 卡 片 分 别 洗 牌, 将 顺 序 打 乱, 然 后 将 两 组 卡 片 反 面 朝 上 置 于 课 桌 上 5. 学 生 依 次 从 两 组 卡 片 中 各 抽 取 一 张, 展 示 给 小 组 成 员, 并 大 声 朗 读 卡

4. 每 组 学 生 将 写 有 习 语 和 含 义 的 两 组 卡 片 分 别 洗 牌, 将 顺 序 打 乱, 然 后 将 两 组 卡 片 反 面 朝 上 置 于 课 桌 上 5. 学 生 依 次 从 两 组 卡 片 中 各 抽 取 一 张, 展 示 给 小 组 成 员, 并 大 声 朗 读 卡 Tips of the Week 课 堂 上 的 英 语 习 语 教 学 ( 二 ) 2015-04-19 吴 倩 MarriottCHEI 大 家 好! 欢 迎 来 到 Tips of the Week! 这 周 我 想 和 老 师 们 分 享 另 外 两 个 课 堂 上 可 以 开 展 的 英 语 习 语 教 学 活 动 其 中 一 个 活 动 是 一 个 充 满 趣 味 的 游 戏, 另 外

More information

hks298cover&back

hks298cover&back 2957 6364 2377 3300 2302 1087 www.scout.org.hk scoutcraft@scout.org.hk 2675 0011 5,500 Service and Scouting Recently, I had an opportunity to learn more about current state of service in Hong Kong

More information

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d WeChat Search Visual Identity Guidelines WEDESIGN 2018. 04 Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies

More information

6 4 6 5 5 2 2 3 1 2 3 1 6 6 6 6 5 5 5 2 2 4 126% * * GOLD COAST OFFICE. Cnr 2681 Gold Coast Highway and Elizabeth Avenue, Broadbeach Queensland 4218 PHONE 07 5531 8188 www.emandar.com.au Whilst every

More information

Microsoft Word - 103-4 記錄附件

Microsoft Word - 103-4 記錄附件 國 立 虎 尾 技 大 103 年 度 第 4 次 教 務 會 議 記 錄 附 件 中 華 民 國 104 年 6 月 16 日 受 文 者 : 國 立 虎 尾 技 大 發 文 日 期 : 中 華 民 國 104 年 5 月 28 日 發 文 字 號 : 臺 教 技 ( 二 ) 字 第 1040058590 號 速 別 : 最 速 件 密 等 及 解 密 條 件 或 保 密 期 限 : 附 件 :

More information

Microsoft PowerPoint - STU_EC_Ch08.ppt

Microsoft PowerPoint - STU_EC_Ch08.ppt 樹德科技大學資訊工程系 Chapter 8: Counters Shi-Huang Chen Fall 2010 1 Outline Asynchronous Counter Operation Synchronous Counter Operation Up/Down Synchronous Counters Design of Synchronous Counters Cascaded Counters

More information

10384 19020101152519 UDC Rayleigh Quasi-Rayleigh Method for computing eigenvalues of symmetric tensors 2 0 1 3 2 0 1 3 2 0 1 3 2013 , 1. 2. [4], [27].,. [6] E- ; [7], Z-. [15]. Ramara G. kolda [1, 2],

More information

%

% 38 1 2014 1 Vol. 38No. 1 January 2014 51 Population Research 2010 2010 2010 65 100028 Changing Lineal Families with Three Generations An Analysis of the 2010 Census Data Wang Yuesheng Abstract In contemporary

More information

Microsoft PowerPoint _代工實例-1

Microsoft PowerPoint _代工實例-1 4302 動態光散射儀 (Dynamic Light Scattering) 代工實例與結果解析 生醫暨非破壞性分析團隊 2016.10 updated Which Size to Measure? Diameter Many techniques make the useful and convenient assumption that every particle is a sphere. The

More information

Microsoft Word - A200811-773.doc

Microsoft Word - A200811-773.doc 语 言 模 型 在 高 校 保 研 工 作 中 的 应 用 王 洋 辽 宁 工 程 技 术 大 学 理 学 院 信 息 与 计 算 科 学, 辽 宁 阜 新 (3000) E-mail: ben.dan000 @63.com 摘 要 : 问 题 重 述 : 模 糊 性 数 学 发 展 的 主 流 是 在 它 的 应 用 方 面, 其 中 模 糊 语 言 模 型 实 现 了 人 类 语 言 的 数 学

More information

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO Car DVD New GUI IR Flow User Manual V0.1 Jan 25, 2008 19, Innovation First Road Science Park Hsin-Chu Taiwan 300 R.O.C. Tel: 886-3-578-6005 Fax: 886-3-578-4418 Web: www.sunplus.com Important Notice SUNPLUS

More information

Windows XP

Windows XP Windows XP What is Windows XP Windows is an Operating System An Operating System is the program that controls the hardware of your computer, and gives you an interface that allows you and other programs

More information

2015 Chinese FL Written examination

2015 Chinese FL Written examination Victorian Certificate of Education 2015 SUPERVISOR TO ATTACH PROCESSING LABEL HERE Letter STUDENT NUMBER CHINESE FIRST LANGUAGE Written examination Monday 16 November 2015 Reading time: 11.45 am to 12.00

More information

LEETCODE leetcode.com 一 个 在 线 编 程 网 站, 收 集 了 IT 公 司 的 面 试 题, 包 括 算 法, 数 据 库 和 shell 算 法 题 支 持 多 种 语 言, 包 括 C, C++, Java, Python 等 2015 年 3 月 份 加 入 了 R

LEETCODE leetcode.com 一 个 在 线 编 程 网 站, 收 集 了 IT 公 司 的 面 试 题, 包 括 算 法, 数 据 库 和 shell 算 法 题 支 持 多 种 语 言, 包 括 C, C++, Java, Python 等 2015 年 3 月 份 加 入 了 R 用 RUBY 解 LEETCODE 算 法 题 RUBY CONF CHINA 2015 By @quakewang LEETCODE leetcode.com 一 个 在 线 编 程 网 站, 收 集 了 IT 公 司 的 面 试 题, 包 括 算 法, 数 据 库 和 shell 算 法 题 支 持 多 种 语 言, 包 括 C, C++, Java, Python 等 2015 年 3 月 份

More information

I

I The Effect of Guided Discovery on The Learning Achievement and Learning Transfer of Grade 5 Students in Primary Schools I II Abstract The Effect of Guided Discovery on The Learning Achievement And Learning

More information

Microsoft Word - xb1202-15 牛尚鹏.doc

Microsoft Word - xb1202-15 牛尚鹏.doc 68. 道 经 语 词 词 义 的 文 化 阐 释 举 隅 以 太 上 洞 渊 神 咒 经 为 例 牛 尚 鹏 [ 南 开 大 学 天 津 300071] [ 摘 要 ] 道 经 中 保 存 了 大 量 具 有 特 殊 的 道 教 文 化 蕴 涵 的 语 词, 为 此 用 文 化 求 义 的 方 法 考 释 了 其 中 的 乌 民 饮 丹 丹 水 本 行 原 蒙 云 刚 擢 质 等 文 化 语 词

More information

南華大學數位論文

南華大學數位論文 A THESIS FOR THE DEGREE OF MASTER OF BUSINESS ADMINISTRATION GRADUATE INSTITUTE IN PUBLISHING NAN HUA UNIVERSITY THE OPERATION MODELS OF WRITERS PRESSES IN TAIWAN ADVISOR: PH.D. CHEN CHUN-JUNG GRADUATE

More information

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish 我 难 度 : 高 级 对 们 现 不 在 知 仍 道 有 听 影 过 响 多 少 那 次 么 : 研 英 究 过 文 论 去 写 文 时 作 的 表 技 引 示 巧 言 事 : 部 情 引 分 发 言 该 生 使 在 中 用 过 去, 而 现 在 完 成 时 仅 表 示 事 情 发 生 在 过 去, 并 的 哪 现 种 在 时 完 态 成 呢 时? 和 难 过 道 去 不 时 相 关? 是 所 有

More information

601988 2010 040 113001 2010 8 26 2010 8 12 2010 8 26 15 15 2010 15 0 0 15 0 0 6035 20022007 20012002 19992001 200720081974 1999 2010 20082008 2000 197

601988 2010 040 113001 2010 8 26 2010 8 12 2010 8 26 15 15 2010 15 0 0 15 0 0 6035 20022007 20012002 19992001 200720081974 1999 2010 20082008 2000 197 BANK OF CHINA LIMITED 3988 2010 8 26 ** ** *** # Alberto TOGNI # # # * # 1 601988 2010 040 113001 2010 8 26 2010 8 12 2010 8 26 15 15 2010 15 0 0 15 0 0 6035 20022007 20012002 19992001 200720081974 1999

More information

01何寄澎.doc

01何寄澎.doc 1 * ** * ** 2003 11 1-36 Imitation and the Formation and Interpretation of the Canon: Lu Chi s Nigushi Ho Chi-p eng Professor, Department of Chinese Literature, National Taiwan University. Hsu Ming-ch

More information

國立中山大學學位論文典藏.PDF

國立中山大學學位論文典藏.PDF ( ) 2-1 p33 3-1 p78 3-2 p79 3-3 p80 3-4 p90 4-1 p95 4-2 p97 4-3 p100 4-4 p103 4-5 p105 4-6 p107 4-7 p108 4-8 p108 4-9 p112 4-10 p114 4-11 p117 4-12 p119 4-13 p121 4-14 p123 4-15 p124 4-16 p131 4-17 p133

More information

untitled

untitled http://idc.hust.edu.cn/~rxli/ 1.1 1.2 1.3 1.4 1.5 1.6 2 1.1 1.1.1 1.1.2 1.1.3 3 1.1.1 Data (0005794, 601,, 1, 1948.03.26, 01) (,,,,,) 4 1.1.1 Database DB 5 1.1.1 (DBMS) DDL ( Create, Drop, Alter) DML(

More information

Microsoft Word - template.doc

Microsoft Word - template.doc HGC efax Service User Guide I. Getting Started Page 1 II. Fax Forward Page 2 4 III. Web Viewing Page 5 7 IV. General Management Page 8 12 V. Help Desk Page 13 VI. Logout Page 13 Page 0 I. Getting Started

More information

1對外華語文詞彙教學的策略研究_第三次印).doc

1對外華語文詞彙教學的策略研究_第三次印).doc 37 92 1 16 1 2 3 4 5 6 7 8????? 9????????? 10???????????????????? 11? 12 13 14 15 16 The Strategy Research of Teaching Chinese as a Second Language Li-Na Fang Department of Chinese, National Kaohsiung

More information

< F5FB77CB6BCBD672028B0B6A46AABE4B751A874A643295F5FB8D5C5AA28A668ADB6292E706466>

< F5FB77CB6BCBD672028B0B6A46AABE4B751A874A643295F5FB8D5C5AA28A668ADB6292E706466> A A A A A i A A A A A A A ii Introduction to the Chinese Editions of Great Ideas Penguin s Great Ideas series began publication in 2004. A somewhat smaller list is published in the USA and a related, even

More information

從篤加有二「區」談當代平埔文化復振現相

從篤加有二「區」談當代平埔文化復振現相 從 篤 加 有 二 邱 談 族 群 正 名 運 動 從 篤 加 有 二 邱 談 族 群 正 名 運 動 陳 榮 輝 台 南 女 子 技 術 學 院 通 識 教 育 中 心 講 師 摘 要 本 文 從 篤 加 村 非 平 埔 族 裔 的 正 名 運 動, 探 討 篤 加 村 民 因 不 認 同 廟 後 區 ( 邱 ) 所 形 成 的 平 埔 族 裔 概 念, 從 地 理 變 遷 村 廟 沿 革 族 譜

More information

高中英文科教師甄試心得

高中英文科教師甄試心得 高 中 英 文 科 教 師 甄 試 心 得 英 語 學 系 碩 士 班 林 俊 呈 高 雄 市 立 高 雄 高 級 中 學 今 年 第 一 次 參 加 教 師 甄 試, 能 夠 在 尚 未 服 兵 役 前 便 考 上 高 雄 市 立 高 雄 高 級 中 學 專 任 教 師, 自 己 覺 得 很 意 外, 也 很 幸 運 考 上 後 不 久 在 與 雄 中 校 長 的 會 談 中, 校 長 的 一 句

More information

Microsoft Word doc

Microsoft Word doc 中 考 英 语 科 考 试 标 准 及 试 卷 结 构 技 术 指 标 构 想 1 王 后 雄 童 祥 林 ( 华 中 师 范 大 学 考 试 研 究 院, 武 汉,430079, 湖 北 ) 提 要 : 本 文 从 结 构 模 式 内 容 要 素 能 力 要 素 题 型 要 素 难 度 要 素 分 数 要 素 时 限 要 素 等 方 面 细 致 分 析 了 中 考 英 语 科 试 卷 结 构 的

More information

数 据 库 系 统 基 础 2/54 第 6 章 数 据 库 管 理 与 维 护

数 据 库 系 统 基 础 2/54 第 6 章 数 据 库 管 理 与 维 护 数 据 库 系 统 基 础 1/54 数 据 库 系 统 基 础 哈 尔 滨 工 业 大 学 2011.~2012. 数 据 库 系 统 基 础 2/54 第 6 章 数 据 库 管 理 与 维 护 数 据 库 系 统 基 础 3/54 第 6 章 数 据 库 管 理 与 维 护 6.1 数 据 库 管 理 员 的 基 本 职 责 6.2 数 据 库 存 储 与 性 能 管 理 6.3 数 据 库

More information

coverage2.ppt

coverage2.ppt Satellite Tool Kit STK/Coverage STK 82 0715 010-68745117 1 Coverage Definition Figure of Merit 2 STK Basic Grid Assets Interval Description 3 Grid Global Latitude Bounds Longitude Lines Custom Regions

More information

硕 士 专 业 学 位 论 文 论 文 题 目 无 锡 市 区 机 关 公 务 员 健 身 锻 炼 现 状 研 究 The Study on Physical Exercises of Civil Servants in Wuxi 研 究 生 姓 名 张 征 指 导 教 师 姓 名 陆 阿 明 教 授 专 业 名 称 研 究 方 向 论 文 提 交 日 期 体 育 教 育 训 练 学 体 育 健 身

More information

從詩歌的鑒賞談生命價值的建構

從詩歌的鑒賞談生命價值的建構 Viktor E. Frankl (logotherapy) (will-to-meaning) (creative values) Ture (Good) (Beauty) (experiential values) (attitudinal values) 1 2 (logotherapy) (biological) (2) (psychological) (3) (noölogical) (4)

More information

Microsoft Word - SH090330.doc

Microsoft Word - SH090330.doc 2009 年 3 月 30 日 環 球 指 數 上 周 收 市 價 一 星 期 變 化 百 分 率 四 星 期 變 化 百 分 率 恆 生 指 數 14,119.50 +1285.99 +10.02% +1307.93 +10.21% 國 企 指 數 8,481.22 +985.26 +13.14% +1578.38 +22.87% 上 海 綜 合 指 數 2,374.44 +93.35 +4.09%

More information

Microsoft Word - ChiIndexofNHE-03.doc

Microsoft Word - ChiIndexofNHE-03.doc 教 育 曙 光 學 報 中 文 論 文 的 分 析 及 主 題 索 引 胡 飄 賀 國 強 香 港 浸 會 大 學 自 一 九 六 一 至 二 零 零 三 的 四 十 三 年 間, 教 育 曙 光 學 報 出 版 四 十 七 期 共 刊 登 七 百 篇 論 文, 本 文 將 其 間 以 中 文 發 表 的 三 百 零 六 篇 論 文 按 關 鍵 字 及 主 題 方 法 編 成 索 引 檢 定 本 索

More information

ebook46-23

ebook46-23 23 Access 2000 S Q L A c c e s s S Q L S Q L S Q L S E L E C T S Q L S Q L A c c e s s S Q L S Q L I N A N S I Jet SQL S Q L S Q L 23.1 Access 2000 SQL S Q L A c c e s s Jet SQL S Q L U N I O N V B A S

More information

壹、前言

壹、前言 DOH93-DC-1116 93 3 1 93 12 31 ... 1... 4... 6... 7... 8... 9... 13... 13 ()... 13 ()... 14 ()... 14... 16... 16... 16... 17... 18 1 ... 19... 24... 27... 29... 31... 31... 33... 34... 35... 36... 36 ()...

More information

OncidiumGower Ramsey ) 2 1(CK1) 2(CK2) 1(T1) 2(T2) ( ) CK1 43 (A 44.2 ) CK2 66 (A 48.5 ) T1 40 (

OncidiumGower Ramsey ) 2 1(CK1) 2(CK2) 1(T1) 2(T2) ( ) CK1 43 (A 44.2 ) CK2 66 (A 48.5 ) T1 40 ( 35 1 2006 48 35-46 OncidiumGower Ramsey ) 2 1(CK1) 2(CK2) 1(T1) 2(T2) (93 5 28 95 1 9 ) 94 1-2 5-6 8-10 94 7 CK1 43 (A 44.2 ) CK2 66 (A 48.5 ) T1 40 (A 47.5 ) T2 73 (A 46.6 ) 3 CK2 T1 T2 CK1 2006 8 16

More information

國立中山大學學位論文典藏

國立中山大學學位論文典藏 I II III IV The theories of leadership seldom explain the difference of male leaders and female leaders. Instead of the assumption that the leaders leading traits and leading styles of two sexes are the

More information

Microsoft Word - HC20138_2010.doc

Microsoft Word - HC20138_2010.doc Page: 1 of 7 Date: April 26, 2010 WINMATE COMMUNICATION INC. 9 F, NO. 111-6, SHING-DE RD., SAN-CHUNG CITY, TAIPEI, TAIWAN, R.O.C. The following merchandise was submitted and identified by the vendor as:

More information

Microsoft Word - 105碩博甄簡章.doc

Microsoft Word - 105碩博甄簡章.doc 淡 江 大 105 年 度 博 甄 試 招 生 簡 章 104 年 9 月 16 日 本 校 招 生 委 員 會 105 年 度 第 1 次 會 議 決 議 通 過 淡 江 大 網 址 :http://www.tku.edu.tw 淡 江 大 105 年 度 博 甄 試 招 生 簡 章 目 錄 壹 報 考 資 格 及 相 關 規 定 1 貳 報 名 與 注 意 事 項 1 參 考 試 日 期 地 點

More information

摘 要 張 捷 明 是 台 灣 當 代 重 要 的 客 語 兒 童 文 學 作 家, 他 的 作 品 記 錄 著 客 家 人 的 思 想 文 化 與 觀 念, 也 曾 榮 獲 多 項 文 學 大 獎 的 肯 定, 對 台 灣 這 塊 土 地 上 的 客 家 人 有 著 深 厚 的 情 感 張 氏 於

摘 要 張 捷 明 是 台 灣 當 代 重 要 的 客 語 兒 童 文 學 作 家, 他 的 作 品 記 錄 著 客 家 人 的 思 想 文 化 與 觀 念, 也 曾 榮 獲 多 項 文 學 大 獎 的 肯 定, 對 台 灣 這 塊 土 地 上 的 客 家 人 有 著 深 厚 的 情 感 張 氏 於 玄 奘 大 學 中 國 語 文 學 系 碩 士 論 文 客 家 安 徒 生 張 捷 明 童 話 研 究 指 導 教 授 : 羅 宗 濤 博 士 研 究 生 : 黃 春 芳 撰 中 華 民 國 一 0 二 年 六 月 摘 要 張 捷 明 是 台 灣 當 代 重 要 的 客 語 兒 童 文 學 作 家, 他 的 作 品 記 錄 著 客 家 人 的 思 想 文 化 與 觀 念, 也 曾 榮 獲 多 項 文

More information

東吳大學

東吳大學 律 律 論 論 療 行 The Study on Medical Practice and Coercion 林 年 律 律 論 論 療 行 The Study on Medical Practice and Coercion 林 年 i 讀 臨 療 留 館 讀 臨 律 六 礪 讀 不 冷 療 臨 年 裡 歷 練 禮 更 老 林 了 更 臨 不 吝 麗 老 劉 老 論 諸 見 了 年 金 歷 了 年

More information

Microsoft Word - ch05note_1210.doc

Microsoft Word - ch05note_1210.doc Section 5. Antiderivatives and indefinite integrals 反 導 函 數 與 不 定 積 分 上 一 章 我 們 已 經 學 過 微 分 以 及 它 的 應 用 現 在 我 們 考 慮 反 向 的 過 程, 稱 為 積 分 (antidifferentiation), 給 定 一 個 導 函 數, 找 出 它 原 始 的 函 數 積 分 也 有 許 多

More information

课程名称:数据库系统概论

课程名称:数据库系统概论 数 据 库 系 统 概 论 第 三 章 关 系 数 据 库 标 准 语 言 SQL (II) 兴 义 民 族 师 范 学 院 数 据 查 询 语 句 格 式 SELECT [ALL DISTINCT] < 目 标 列 表 达 式 > [,< 目 标 列 表 达 式 >] FROM < 表 名 或 视 图 名 >[, < 表 名 或 视 图 名 > ] [ WHERE < 条 件 表 达 式 > ]

More information

2/80 2

2/80 2 2/80 2 3/80 3 DSP2400 is a high performance Digital Signal Processor (DSP) designed and developed by author s laboratory. It is designed for multimedia and wireless application. To develop application

More information

HKG_ICSS_FTO_sogobrilingual_100_19Feb2016_31837_tnc

HKG_ICSS_FTO_sogobrilingual_100_19Feb2016_31837_tnc Terms and conditions: 1. The extra 5 Membership Rewards points promotion at SOGO ( the Promotion Offer ) is valid for spending only at SOGO Department Store at Causeway Bay and Tsim Sha Tsui within the

More information

10389144 2006 5 30 2006 5 30

10389144 2006 5 30 2006 5 30 10389144 10389144 2006 5 30 2006 5 30 ED ED IIEFEFOF SDISOS ED 10 2 2 1 10 4 1 1 4 4 IIEF SD EFOFISOS EF 2 1 1 4 1 ED ED Study on the effect of Sex Therapy for Erectile Dysfunction Patients ABSTRACT Objective

More information

Introduction to Hamilton-Jacobi Equations and Periodic Homogenization

Introduction to Hamilton-Jacobi Equations  and Periodic Homogenization Introduction to Hamilton-Jacobi Equations and Periodic Yu-Yu Liu NCKU Math August 22, 2012 Yu-Yu Liu (NCKU Math) H-J equation and August 22, 2012 1 / 15 H-J equations H-J equations A Hamilton-Jacobi equation

More information

鼠 疫(Plague)

鼠 疫(Plague) 鼠 疫 (Plague) 一 疾 病 概 述 (Disease description) 存 在 囓 齒 類 及 其 跳 蚤 的 一 種 人 畜 共 通 傳 染 病, 並 藉 跳 蚤 傳 染 給 各 種 動 物 及 人 類, 其 最 初 反 應 為 跳 蚤 咬 傷 部 位 臨 近 的 淋 巴 腺 發 炎, 這 就 是 腺 鼠 疫, 經 常 發 生 於 鼠 蹊 部, 少 發 生 於 腋 下 或 頸 部,

More information

Microsoft Word - 18-p0402-c3.doc

Microsoft Word - 18-p0402-c3.doc 第 14 卷 第 3 期 中 南 大 学 学 报 ( 社 会 科 学 版 ) Vol.14 No3 2008 年 6 月 J. CENT. SOUTH UNIV. (SOCIAL SCIENCE) Jun 2008 肺 病 隐 喻 与 性 别 身 份 建 构 中 国 现 代 文 学 中 的 肺 病 意 象 分 析 王 冬 梅 ( 枣 庄 学 院 中 文 系, 山 东 枣 庄,277160) 摘 要

More information

周年校務計劃05-06

周年校務計劃05-06 聖 家 學 校 辦 學 宗 旨 本 校 是 一 所 政 府 資 助 小 學, 屬 香 港 天 主 教 教 區 學 校 之 一 本 校 秉 承 聖 家 的 愛 主 愛 人 仁 愛 服 從 勤 勞 精 神, 培 育 學 生 德 智 體 群 美 靈 六 育 美 德 積 極 與 家 長 合 作, 配 合 先 進 教 學 法, 指 導 學 生 探 求 學 問, 養 成 良 好 的 生 活 習 慣, 培 養 正

More information

瑏瑡 B ~ 瑏瑡

瑏瑡 B ~ 瑏瑡 210093 1200 K928. 6 A 1005-605X 2014 04-0059- 10 The Taihu Lake Basin in the Regional History Study Jiangnan or West Zhejiang GAO Yi - fan FAN Jin - min History Department Nanjing University Nanjing 210093

More information

untitled

untitled and Due Diligence M&A in China Prelude and Due Diligence A Case For Proper A Gentleman s Agreement? 1 Respect for the Rule of Law in China mandatory under law? CRITICAL DOCUMENTS is driven by deal structure:

More information

建國科大 許您一個海闊天空的未來 建國科大本著術德兼修五育並重的教育方針 持續努力的朝向專業教學型大學邁進 期許建國的學生能成為企業所樂用的人才 建國科大多元性發展與延伸觸角 如 教學卓越計畫 產官學合作 國際交流活動等等 讓師生能充實基礎實力 更提升競爭力 不管將來是要升學或是就業 都能一帆風順

建國科大 許您一個海闊天空的未來 建國科大本著術德兼修五育並重的教育方針 持續努力的朝向專業教學型大學邁進 期許建國的學生能成為企業所樂用的人才 建國科大多元性發展與延伸觸角 如 教學卓越計畫 產官學合作 國際交流活動等等 讓師生能充實基礎實力 更提升競爭力 不管將來是要升學或是就業 都能一帆風順 校刊 Chienkuo Monthly 224 2 0 11.4.1 6 出刊 學 力 實 力 願 力 建國科技大學辦學 卓越 優質 傑出 奉准101年起以公立標準招收繁星計畫學生 焦 點 報 導 建國科技大學奉准招收繁星計畫學生 學力實力願力 自動化工程系參加 2011臺灣無人飛機設計競賽 脫穎而出 獲得五座獎盃 兩 岸 交 流 華中科技大學武昌分校金國華董事長蒞校參訪 策略聯盟計畫 建國科技大學美容系舉辦新娘造型專題競賽活動

More information

모집요강(중문)[2013후기외국인]04.26.hwp

모집요강(중문)[2013후기외국인]04.26.hwp 2013 弘 益 大 学 后 期 外 国 人 特 别 招 生 简 章 弘 益 大 学 http://ibsi.hongik.ac.kr 目 次 I 招 生 日 程 3 II 招 生 单 位 4 III 报 名 资 格 及 提 交 材 料 5 IV 录 取 方 法 8 V 报 名 程 序 9 VI 注 册 指 南 11 VII 其 它 12 附 录 提 交 材 料 表 格 外 国 人 入 学 申 请

More information

投影片 1

投影片 1 () () I am delighted to hear that Methodist College is organising a Mentoring Programme to help the Form 4 to Form 6 students to have a more enriched experience in addition to their academic study. I

More information

Untitled-3

Untitled-3 SEC.. Separable Equations In each of problems 1 through 8 solve the given differential equation : ü 1. y ' x y x y, y 0 fl y - x 0 fl y - x 0 fl y - x3 3 c, y 0 ü. y ' x ^ y 1 + x 3 x y 1 + x 3, y 0 fl

More information

Microsoft Word - 論文封面-980103修.doc

Microsoft Word - 論文封面-980103修.doc 淡 江 大 學 中 國 文 學 學 系 碩 士 在 職 專 班 碩 士 論 文 指 導 教 授 : 呂 正 惠 蘇 敏 逸 博 士 博 士 倚 天 屠 龍 記 愛 情 敘 事 之 研 究 研 究 生 : 陳 麗 淑 撰 中 華 民 國 98 年 1 月 淡 江 大 學 研 究 生 中 文 論 文 提 要 論 文 名 稱 : 倚 天 屠 龍 記 愛 情 敘 事 之 研 究 頁 數 :128 校 系 (

More information

LH_Series_Rev2014.pdf

LH_Series_Rev2014.pdf REMINDERS Product information in this catalog is as of October 2013. All of the contents specified herein are subject to change without notice due to technical improvements, etc. Therefore, please check

More information

Microsoft Word - ChineseSATII .doc

Microsoft Word - ChineseSATII .doc 中 文 SAT II 冯 瑶 一 什 么 是 SAT II 中 文 (SAT Subject Test in Chinese with Listening)? SAT Subject Test 是 美 国 大 学 理 事 会 (College Board) 为 美 国 高 中 生 举 办 的 全 国 性 专 科 标 准 测 试 考 生 的 成 绩 是 美 国 大 学 录 取 新 生 的 重 要 依

More information

Microsoft Word - 0000000673_4.doc

Microsoft Word - 0000000673_4.doc 香 港 特 別 行 政 區 政 府 知 識 產 權 署 商 標 註 冊 處 Trade Marks Registry, Intellectual Property Department The Government of the Hong Kong Special Administrative Region 在 註 冊 申 請 詳 情 公 布 後 要 求 修 訂 貨 品 / 服 務 說 明 商 標

More information

PowerPoint Presentation

PowerPoint Presentation Skill-building Courses Intro to SQL Lesson 2 More Functions in SQL 通配符 :LIKE SELECT * FROM Products WHERE PName LIKE %gizmo% PName Price Category Manufacturer Gizmo $19.99 Gadgets GizmoWorks Powergizmo

More information

<4D6963726F736F667420576F7264202D203033BDD7A16DA576B04FA145A4ADABD2A5BBACF6A16EADBAB6C0ABD2A4A7B74EB8712E646F63>

<4D6963726F736F667420576F7264202D203033BDD7A16DA576B04FA145A4ADABD2A5BBACF6A16EADBAB6C0ABD2A4A7B74EB8712E646F63> 論 史 記 五 帝 本 紀 首 黃 帝 之 意 義 林 立 仁 明 志 科 技 大 學 通 識 教 育 中 心 副 教 授 摘 要 太 史 公 司 馬 遷 承 父 著 史 遺 志, 並 以 身 膺 五 百 年 大 運, 上 繼 孔 子 春 秋 之 史 學 文 化 道 統 為 其 職 志, 著 史 記 欲 達 究 天 人 之 際, 通 古 今 之 變, 成 一 家 之 言 之 境 界 然 史 記 百

More information

PowerPoint Presentation

PowerPoint Presentation TOEFL Practice Online User Guide Revised September 2009 In This Guide General Tips for Using TOEFL Practice Online Directions for New Users Directions for Returning Users 2 General Tips To use TOEFL Practice

More information

豐 邑 家 族 季 刊 編 者 的 話 2015.02-04 No.07 彼 此 相 愛 總 編 輯 : 邱 崇 喆 主 編 : 戴 秋 柑 編 輯 委 員 : 黃 淑 美 盧 永 吉 王 森 生 趙 家 明 林 孟 姿 曾 淑 慧 執 行 編 輯 : 豐 邑 建 設 企 劃 課 出 版 發 行 :

豐 邑 家 族 季 刊 編 者 的 話 2015.02-04 No.07 彼 此 相 愛 總 編 輯 : 邱 崇 喆 主 編 : 戴 秋 柑 編 輯 委 員 : 黃 淑 美 盧 永 吉 王 森 生 趙 家 明 林 孟 姿 曾 淑 慧 執 行 編 輯 : 豐 邑 建 設 企 劃 課 出 版 發 行 : 豐 邑 家 族 季 刊 編 者 的 話 2015.02-04 No.07 彼 此 相 愛 總 編 輯 : 邱 崇 喆 主 編 : 戴 秋 柑 編 輯 委 員 : 黃 淑 美 盧 永 吉 王 森 生 趙 家 明 林 孟 姿 曾 淑 慧 執 行 編 輯 : 豐 邑 建 設 企 劃 課 出 版 發 行 : 豐 邑 專 業 整 合 團 隊 地 址 : 台 中 市 台 灣 大 道 二 段 501 號 20F-1

More information

Microsoft PowerPoint - ATF2015.ppt [相容模式]

Microsoft PowerPoint - ATF2015.ppt [相容模式] Improving the Video Totalized Method of Stopwatch Calibration Samuel C.K. Ko, Aaron Y.K. Yan and Henry C.K. Ma The Government of Hong Kong Special Administrative Region (SCL) 31 Oct 2015 1 Contents Introduction

More information

Public Projects A Thesis Submitted to Department of Construction Engineering National Kaohsiung First University of Science and Technology In Partial

Public Projects A Thesis Submitted to Department of Construction Engineering National Kaohsiung First University of Science and Technology In Partial Public Projects A Thesis Submitted to Department of Construction Engineering National Kaohsiung First University of Science and Technology In Partial Fulfillment of the Requirements For the Degree of Master

More information

<4D6963726F736F667420576F7264202D2031322D312DC2B2B4C2AB47A16DC5AAAED1B0F3B5AAB0DDA144A7B5B867A16EB2A4B1B4A277A548AED1A4A4BEC7A5CDB0DDC344ACB0A8D2>

<4D6963726F736F667420576F7264202D2031322D312DC2B2B4C2AB47A16DC5AAAED1B0F3B5AAB0DDA144A7B5B867A16EB2A4B1B4A277A548AED1A4A4BEC7A5CDB0DDC344ACB0A8D2> 弘 光 人 文 社 會 學 報 第 12 期 簡 朝 亮 讀 書 堂 答 問. 孝 經 略 探 以 書 中 學 生 問 題 為 例 趙 詠 寬 彰 化 師 範 大 學 國 文 學 系 博 士 班 研 究 生 摘 要 孝 經 是 十 三 經 中 字 數 最 少 的 經 典, 然 實 踐 性 高, 受 歷 來 帝 王 重 視 但 在 清 末 民 初, 傳 統 思 維 受 到 挑 戰, 被 視 為 維 護

More information

中 国 女 性 的 婚 姻 与 生 育 状 况 一 婚 姻 状 况 的 总 体 特 征 婚 姻 状 况 是 我 们 探 知 人 们 生 活 的 一 扇 窗 户, 婚 姻 状 况 的 变 化 在 一 定 程 度 上 反 映 了 一 个 社 会 的 现 代 化 和 工 业 化 水 平 社 会 转 型 和

中 国 女 性 的 婚 姻 与 生 育 状 况 一 婚 姻 状 况 的 总 体 特 征 婚 姻 状 况 是 我 们 探 知 人 们 生 活 的 一 扇 窗 户, 婚 姻 状 况 的 变 化 在 一 定 程 度 上 反 映 了 一 个 社 会 的 现 代 化 和 工 业 化 水 平 社 会 转 型 和 妇 女 绿 皮 书. 5 中 国 女 性 的 婚 姻 与 生 育 状 况 杨 玉 静 摘 要 : 进 入 21 世 纪, 中 国 女 性 的 婚 姻 与 生 育 状 况 出 现 了 新 的 特 征 六 普 数 据 显 示, 2010 年 女 性 有 偶 率 为 72. 3%, 普 遍 结 婚 仍 是 女 性 婚 姻 状 况 的 一 个 特 点 ; 未 婚 率 和 离 婚 率 分 别 为 18. 5%

More information

目录 CONTENTS

目录 CONTENTS 目 录 CONTENTS 第 一 章 雅 思 阅 读 考 试 介 绍 第 一 节 学 术 类 和 普 通 培 训 类 阅 读 文 章 之 比 较 第 二 节 主 流 题 型 分 析 第 三 节 雅 思 阅 读 考 点 第 四 节 雅 思 阅 读 应 试 建 议 第 五 节 记 分 和 评 分 第 二 章 雅 思 阅 读 技 巧 第 一 节 雅 思 阅 读 步 骤 第 二 节 雅 思 阅 读 练 习

More information

Microsoft Word - 100碩士口試流程

Microsoft Word - 100碩士口試流程 國 立 虎 尾 科 技 大 學 財 務 金 融 系 碩 士 班 口 流 程 檢 核 表 學 位 考 口 相 關 流 程 ( 共 2 頁 ):( 申 請 時, 請 攜 本 表 依 序 進 行 ) 流 程 說 明 申 請 期 限 或 時 間 說 明 與 參 考 附 件 學 位 考 資 格 申 請 口 申 請 口 前 一 天 口 當 天 修 業 規 章 第 一 學 期 : 繳 交 : 自 完 成 註 冊

More information

謝誌

謝誌 G ... 1... 1... 5... 6... 7...

More information