The document contains code for determining if a year is a leap year. It checks if the year is divisible by 4, 100, or 400. If the year is divisible by 4 but not 100, or divisible by 400, then it is a leap year. The code prints out if the given year example of 2004 is a leap year or not.
The document discusses SQL aggregation functions such as COUNT, AVG, MAX, MIN, and SUM. It explores using these functions with and without parameters, including with NULL values. It also covers grouping results by columns and aggregating multiple columns.
The code defines a ListEvenNumbers class with a main method. It uses a for loop to iterate from 1 to a limit of 50, and prints any numbers that are even (where i % 2 == 0) to the console. The output printed would be all even numbers from 2 to 50.
The document discusses a trust certification system used in Japan. It provides ID numbers for 2500 companies that have been certified as trustworthy. The certification is given based on a points system, with companies needing at least 1500 points to receive certification. Companies can earn points in several categories such as employee education. The document also contains technical details about assigning ID numbers to certified companies.
Guidance for beginners and experts on how to set up a Windows driver developm...Atomu Hidaka
?
This explains how to build a Windows driver development environment that can be used immediately by beginners and experts alike. The author, who has extensive experience developing various Windows drivers, shows the latest and simplest ways to use Visual Studio and WDK.
English follows Japanese.
筑波技術大学アレクサスキル開発チームがJAWS のユーザグループで登壇した内容です.視覚障害者の開発についても少しだけ触れています.
This is a presentation given by the Tsukuba University of Technology Alexa Skills Development Team at a JAWS user group. It also touches briefly on development for visually impaired people.
The document contains code for determining if a year is a leap year. It checks if the year is divisible by 4, 100, or 400. If the year is divisible by 4 but not 100, or divisible by 400, then it is a leap year. The code prints out if the given year example of 2004 is a leap year or not.
The document discusses SQL aggregation functions such as COUNT, AVG, MAX, MIN, and SUM. It explores using these functions with and without parameters, including with NULL values. It also covers grouping results by columns and aggregating multiple columns.
The code defines a ListEvenNumbers class with a main method. It uses a for loop to iterate from 1 to a limit of 50, and prints any numbers that are even (where i % 2 == 0) to the console. The output printed would be all even numbers from 2 to 50.
The document discusses a trust certification system used in Japan. It provides ID numbers for 2500 companies that have been certified as trustworthy. The certification is given based on a points system, with companies needing at least 1500 points to receive certification. Companies can earn points in several categories such as employee education. The document also contains technical details about assigning ID numbers to certified companies.
Guidance for beginners and experts on how to set up a Windows driver developm...Atomu Hidaka
?
This explains how to build a Windows driver development environment that can be used immediately by beginners and experts alike. The author, who has extensive experience developing various Windows drivers, shows the latest and simplest ways to use Visual Studio and WDK.
English follows Japanese.
筑波技術大学アレクサスキル開発チームがJAWS のユーザグループで登壇した内容です.視覚障害者の開発についても少しだけ触れています.
This is a presentation given by the Tsukuba University of Technology Alexa Skills Development Team at a JAWS user group. It also touches briefly on development for visually impaired people.
8. 都道府県毎のA型の人数
? SELECT prefecture, COUNT( * )
FROM pinfo
WHERE blood_type = 'A'
GROUP BY prefecture
ORDER BY prefecture
集計する前にレコードを絞り込んでいる
13年10月2日水曜日
12. 平均年令が36以上の
血液型
? SELECT blood_type, COUNT( blood_type ) ,
AVG( age )
FROM pinfo
GROUP BY blood_type
HAVING AVG( age ) >=36
WHERE AVG(age) >= 36 とは書かない!
13年10月2日水曜日