国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

NFO20003代做、代寫SQL編程語言
NFO20003代做、代寫SQL編程語言

時間:2025-04-30  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



NFO20003 Semester 1, 2025

Assignment 2: SQL

Due: 11:59pm Friday, 2 May, 2025

Weighting: 10% of your total assessment

EV-XYZ: Electric vehicle and charger database

Description

EV-XYZ is a platform you’re creating to help keep track of its electric vehicles, charging stations, and

charging activities.

An electric vehicle (EV) charging station provides charging facilities with different charging rates and

costs to the electric vehicles. The charging stations can also be associated with other facilities like cafés

and restaurants.

Charging station

For each charging station, the system records its details, that are – the address of the charging station

(as street address, suburb, state, postcode), and the establishment date. Each charging station is also

associated with at least one ‘company’ that owns that charging station. A charging station can be jointly

owned by multiple companies.

Each charging station has at least one charging ‘outlet’ where electric vehicles can plug-in for charging.

An outlet of a charging station can be uniquely identified with the charging station’s ID and the outlet’s

ID, as ‘charging station ID X, outlet ID Y’.

Each outlet has a charging rate in kW (e.g. 120), and the

charging cost per kwh is also recorded (in $/kWh, e.g. 0.25 $/kWh). Different outlets of the same

charging station can have different charging costs.

The system also stores information about ‘facilities’ (e.g., a café or restaurant), if they are associated

with a charging station.

A facility can provide discount coupons, which can be used for discounted rates

of a ‘charging event’. For each coupon, the system stores some values of the coupon, which are – the

unique coupon ID, and discount value. A coupon can only be issued by one facility and used in at most

one charging event.

Electric vehicle (EV) + People

Each electric vehicle is associated with a unique vehicle identification number (VIN), manufacturer

company, model name, year, capacity of the battery (in kWh, e.g. 60kWh). For each manufacturer

company - the name of the company, a unique ABN number, and the current CEO’s name are stored.

Sometimes an EV company is owned by a parent EV company, which the model also stores.

Each electric vehicle is registered to one person. For each person, the system stores that person’s

(unique) driving license number, and their name. One person can have multiple electric vehicles

registered with them.

Charging event

The system maintains the information of all charging events – that is, which electric vehicle is charged

at which outlet of a charging station. When a person wants to charge a car, they request to charge at a

particular charging station. The person who charges the car may not necessarily be the car’s registered

owner, so we record the license number of the person who is charging. Once an outlet is available, the

system will assign an outlet to the person, and they may use it to start charging. The kWh a charge event

consumed is also recorded after charging is completed.

A charging event may or may not use a discount coupon, where the coupon can only be from one of the

facilities. A discount coupon represents a ‘percentage discount’ (e.g. a value of 0.5 indicates a 50%

discount).

Data Model

Figure 1: The physical ER model of EV-XYZ

Assignment 2 Setup

A dataset is provided which you can use when developing your solutions. To set up the dataset,

download the file ev_2025.sql from the Assignment link on Canvas and run it in Workbench. This script

creates the database tables and populates them with data. Note that this dataset is provided for you to

experiment with, but it is not the same dataset as what your queries will be tested against (the schema

will stay the same, but the data itself may be different). This means when designing your queries you

must consider edge cases even if they are not represented in this particular data set, and should not

hardcode information like IDs into your queries.

The script is designed to run against your account on the Engineering IT server

(info20003db.eng.unimelb.edu.au). If you want to install the schema on your own MySQL Server

installation, uncomment the lines at the beginning of the script.

? Do NOT disable only_full_group_by mode when completing this assignment. This mode is the

default, and is turned on in all default installs of MySQL workbench. You can check whether it is turned

on by running the query `SELECT @@sql_mode;`. The command should return a string containing

“ONLY_FULL_GROUP_BY” or “ANSI”.

When testing, our test server WILL have this mode turned

on, and if your query fails due to this, you will lose marks.

The SQL tasks

In this section are listed 10 questions for you to answer. Write one (single) SQL statement per question.

Subqueries and nesting are allowed within a single SQL statement

? In general, we care more about correctness than constructing the ‘most efficient’ query

(computationally, or in terms of number of characters/lines). However, you may be penalized for

writing overly complicated SQL statements (e.g the query is 2-3x longer than required, using

superfluous joins, etc), using very poor formatting, using very poor alias naming, or other decisions that

make it hard for us to read/understand what you’re trying to do when marking!

? DO NOT USE VIEWS (or ‘WITH’ statements/common table expressions) to answer questions.

1. Find the model name and model year of the vehicle with the highest battery capacity. If there

are ties, return a row for each of those model name and year with equal highest capacity. Your

query should return results of the form (model_name, model_year, battery_capacity). (1 mark)

2. Find all the charging stations with at least one outlet of 100 or higher charging rate. Do not

repeat the same station multiple times in the result if it has multiple outlets which meet the

criteria. Your query should return results of the form (station_id, state, postcode). (1 mark)

3. Find all the charging stations that do not have any facility associated with them. Your query

should return results of the form (station_id). (1 mark)

4. Find all the people who have electric vehicles registered in their name, where that vehicle has

no charging event in the database. Only include people with at least one car registered to them

that meets this criteria. Your query should return (license_number, name, total_num_of_cars_

with_no_charge_event_registered_to_person), ordered by name in increasing order. (2 marks)

5. Find all facilities that have ever issued a coupon, but had no coupons redeemed on “2025-01- 01” (i.e., no charging event requested charging using that coupon on that day). Your query

should return all such facilities in the form (facility_id). (2 marks)

6. Find all vehicle models and model years that, on average, charge more than 50kWh when they

charge at outlets with a charging rate > 68 kW. If a charging event has NULL for kWh value,

it should not be considered in the average. The average_kwh must be rounded to two decimal

places (hint: use the `Round` function). Return results as (model_name, model_year,

company_name, rounded_average_kwh). (2 marks).

7. Find the total number of vehicles manufactured by the company with an ABN of ‘1’, or any of

that company’s child or grandchild companies. Your query should return a single value of the

form (total_number_manufactured) (2 marks).

Further clarification for Q7:

If a company X is owned by company Y, then X is the child company of Y. If company Y is

owned by company Z, then X is the grandchild company of Z. You may assume there are no

‘great-grandchild’ companies (see example below). You may also assume that there are no

circular relationships, e.g., if X is a child or grandchild of Y, then Y cannot be a child or

grandchild of X.

For example, suppose that the `Company` table looked like the following:

abn company_name parent_abn *Note*

“1” “General Motors LLC” NULL

“2” “GMC” “1” ‘child’ company of “1”

“3” “Hummer, Inc” “2” ‘grandchild’ company of “1”

Since the company with abn “2” is a child of (owned by) company “1”, and company “3” is a

child of company “2”, answering this question would involve finding the total number of cars

manufactured by companies “1”, “2” and “3”. There will never be a company which has a

parent_abn of “3”, since that would then be a “great-grandchild company”.

8. Find all vehicles that have only ever been charged by people who are NOT the registered owner

of the vehicle. Only include vehicles in the result that have been in at least one charging event.

Return results as (VIN). Charging events with NULL kWh should still be considered. (3 marks)

9. Find all (person, car) pairings where the person has charged that car at every outlet of every

station that is both located in a postcode between 3000 and 4000 (including 3000 but not 4000)

and owned by the manufacturer of the car. Return results as (license_number, VIN). Only

consider stations owned by the company directly, not by child companies. Charging events with

NULL kWh should still be considered. (3 marks)

Further clarification for Q9:

- If a carY has been charged at all outlets matching the criteria by personX, and additionally has

been charged at all outlets matching the criteria by personW, the results would include rows

(license_number_personX, vin_carY) and (license_number_personW, vin_carY).

- A row in the output of the query indicates that the same person charged the same car at all

outlets that match the criteria for that car. Say there exists a carY, and station1 and station2 are

the only two stations that fulfil the criteria for carY (have a postcode of 3xxx, and are owned

by the manufacturer of carY). Say there exists a personA who has charged carY at every outlet

of station1 but never charged at any outlet of station2. A different personB also exists, who has

charged the same carY at every outlet of station2 but never at any outlet of station1. In this

instance, no rows should be returned as result, because no single person charged carY at every

outlet matching the given criteria (even though the car was charged at every outlet by

somebody).

10. What was the total income of outlet `2` of the charging station located at street address `125

Collins Street` in postcode `3000` in January 2025? Use the `requested_at` date to determine

whether a charging event was on that date. Your query should return a single value of the form

(total_income), rounded to two decimal places (hint: use the `Round` function, and round

after performing any aggregations). Note that you should consider the income after applying

any discounts (see hint below). (3 marks)

Hint: The income generated from a single charging event E at an outlet O which used coupon

C for a discount can be calculated as:

E.kwh x O.price_kwh x C.discount

SQL Response Formatting Requirements

To help us mark your assignment queries as quickly/accurately as possible, please ensure that:

1. Your query returns the projected attributes in the same order as given in the question, and

does not include additional columns.

E.g., if the question asks ‘return as (userId, name)’, then:

? DO: “SELECT userId, name …”

? ? DON’T: “SELECT name, userId…”

You can, however, rename/name the columns to whatever you’d like using `AS`, only the order

matters.

2. Do NOT use “databaseName.tableName” format.

E.g.:

? DO: “SELECT userId FROM users…”

? ? DON’T: “SELECT userId FROM coltonc.users …”.

Note that you can use tableName.columnName format, like researchers.email.

3. Ensure that you are using single quotes( ‘ ) for strings

Double quotes should only be used for table names (but you shouldn’t need to do this since we don’t

have spaces in our table names)

E.g.:

? DO: …WHERE name = ‘bob’

? ?DON’T: …WHERE name = “bob”…

4. Do NOT delete the special comment markers in the SQL template file.

These include (where X is the question number):

-- BEGIN QX

-- END QX

-- END OF ASSIGNMENT

These help us mark your assignment!

5. Comments are optional, but will help tutors to understand your code!

Submission Instructions

Your submission will be in the form of an SQL script. There is a template file on the LMS, into which

you will paste your solutions and fill in your student details (more information below).

This .sql file should be submitted on Canvas by 6pm on the due date of Friday 2nd May. Name your

submission as 987654.sql, where 987654 corresponds to YOUR student id.

Filling in the template file:

The template file on the LMS has spaces for you to fill in your student details and your answers to the

questions. There is also an example prefilled script available on the LMS as well. Below are screenshots

from those two documents explaining the steps you need to take to submit your solutions:

Step Example

1. At the top of the

template, you’ll need to

replace “XXXXXXXX”

with your student

number and name

Template

Example Filled in

2. For each question 1- 10, place your SQL

solution in between the

“BEGIN QX” and

“END QX” markers.

Ensure each query is

terminated with a

semicolon “;”

Template

Example Filled in

3. Test that your script is

valid SQL by running it

from MySQL

Workbench. Run the

entire script by copy- pasting this entire file

into a new workbench

tab, placing your cursor

at the start of the file

(without selecting

anything), and pressing

the lightning bolt to run

the entire file.

All queries should run

successfully one after

another. If not, check to

make sure you added

semicolons ‘;’ after each

query.

All 10 queries ran sequentially and were successful.

Late submission

Unless you have an approved extension (see below), you will be penalised -10% of the total number of

marks in the assignment per day day (including weekdays and weekends) that your submission is late.

For instance, if you received a 78% raw score, but submitted 2 days late, you'd receive a 58% score for

the assignment.

Requesting a Submission Deadline Extension

If you need an extension due to a valid (medical) reason, you need to follow the procedure described in

FEIT Extensions and Special consideration page:

https://canvas.lms.unimelb.edu.au/courses/210122/pages/feit-extensions-and-special- consideration?module_item_id=6469145.

Reminder: INFO20003 Hurdle Requirements

To pass INFO20003, you must pass two hurdles:

 Hurdle 1: Obtain at least 50% (15/30) for the three assignments (each worth 10%)
 Hurdle 2: Obtain at least 50% (35/70) for the combination of the quizzes and final exam

Therefore, it is our recommendation that you attempt every assignment and question in the exam.

GOOD LUCK!

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp

掃一掃在手機打開當前頁
  • 上一篇:被易分期強制下款怎么辦?如何聯系易分期客服解決問題?
  • 下一篇:FINC5090代寫、代做Java/Python程序
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網頁版入口 破天一劍 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    国产99久久九九精品无码| xvideos亚洲| 久久一区免费| 欧美精品免费在线| 欧美无砖专区免费| 高清不卡一区二区三区| 久久精品中文字幕一区| 亚洲AV无码成人精品一区| 国产欧美日韩中文字幕在线| 久久久精品久久久| 青青草综合在线| 国产福利一区视频| 亚洲a在线播放| 成人在线精品视频| 在线国产99| 超碰在线观看97| 亚洲综合av影视| 成人综合国产精品| 欧美激情图片区| 国产日韩在线一区二区三区| 国产精品美女呻吟| 国模私拍一区二区三区| 国产精品日韩高清| 欧美精品无码一区二区三区| www.xxxx欧美| 黄色影院一级片| 国产精品旅馆在线| 黄频视频在线观看| 国产精品久久久久久久久久久久久| 欧美精品一区二区三区在线看午夜 | 亚洲一区美女视频在线观看免费| 国产一区二区不卡视频| 欧美人与物videos| 国产日韩欧美另类| 一区二区三区欧美在线| 99国产高清| 日本视频一区在线观看| 久久久久久一区| 精品人妻大屁股白浆无码| 国产精品久久一| 国产麻豆日韩| 亚洲一区二三| 久久精品日产第一区二区三区乱码| 日韩视频在线免费看| 久久精品电影网站| 国产午夜大地久久| 亚洲成人一区二区三区| 国产av无码专区亚洲精品| 青青青在线播放| 国产精品乱码一区二区三区| 国产精品自产拍高潮在线观看| 亚洲制服欧美久久| 久久综合久久久| 欧美午夜性视频| 精品国产一二| 久久亚洲国产精品日日av夜夜| 日本999视频| 久久av在线看| 99久久久精品视频| 人人妻人人澡人人爽精品欧美一区| 精品国产一区二区三区久久狼5月| 内射国产内射夫妻免费频道| 国产aⅴ精品一区二区三区黄 | 欧美性大战久久久久| 不卡毛片在线看| 97精品久久久| 欧美视频在线观看网站| 久久国产精品久久久久久久久久 | 粉嫩av四季av绯色av第一区| 亚洲成人精品电影在线观看| www.日韩不卡电影av| 国产片侵犯亲女视频播放| 亚洲国产精品一区在线观看不卡| 国产成人在线一区| 国产在线观看精品| 欧美一级片免费观看| 国产精品久久一区主播| 91传媒免费视频| 蜜桃传媒视频第一区入口在线看 | 国产999视频| 久久精品国产一区二区三区不卡 | 国产经典一区二区| 国内外免费激情视频| 亚洲精品中文综合第一页| 国产精品视频白浆免费视频| 91高清免费在线观看| 国产在线视频不卡| 日韩中字在线观看| 精品卡一卡二| 久久久成人精品视频| 91精品在线播放| 国产日韩欧美自拍| 欧美一性一乱一交一视频| 亚洲一区二区三区久久| 国产精品极品尤物在线观看| 国产福利视频一区| 99在线视频免费观看| 国产在线98福利播放视频| 日本中文不卡| 亚洲视频在线二区| 精品国产一区二区三区免费| 国产精品视频精品| 久久综合久久网| 成人av电影免费| 国产亚洲欧美另类一区二区三区| 热re99久久精品国产66热| 少妇高清精品毛片在线视频| 美女999久久久精品视频| 久久久精品在线观看| 国产成人av在线| 69**夜色精品国产69乱| 国产欧美日本在线| 国产日韩在线精品av| 国内精品国产三级国产在线专 | 欧美成人精品三级在线观看| 国产成人精品最新| 久久99国产精品99久久| 国产黄页在线观看| 91精品视频在线| 97免费视频观看| 成人久久18免费网站漫画| 国产男女激情视频| 国产一区二区中文字幕免费看| 欧美日韩一区在线观看视频| 日韩精品一区二区三区色欲av| 性欧美精品一区二区三区在线播放| 亚洲欧美丝袜| 亚洲免费不卡| 亚洲午夜久久久影院伊人| 宅男噜噜99国产精品观看免费| 欧美精品在线视频观看| 欧美成人性色生活仑片| 精品国产免费人成电影在线观...| 国产精品成人一区二区| 国产精品三区在线| 国产精品福利在线观看| 国产精品久久久对白| 国产精品久久久久久影视| 国产精品海角社区在线观看| 国产精品国产三级国产专区53| 久久这里只有精品视频首页| 精品国产av无码一区二区三区| 久久五月天综合| 欧美成人精品一区二区三区| 欧美激情区在线播放| 一区二区三区一级片| 亚洲国产欧美一区二区三区不卡| 无码人妻精品一区二区蜜桃百度 | 国产精品久久久影院| 国产精品久久久久久av| 精品国产综合区久久久久久 | 日韩久久精品一区二区三区| 欧洲精品码一区二区三区免费看| 欧美精品欧美精品| 国产无套粉嫩白浆内谢的出处| 国产美女网站在线观看| 91国自产精品中文字幕亚洲 | 日韩美女中文字幕| 欧美日韩激情四射| 国产欧美亚洲精品| 久久久亚洲成人| 久久手机精品视频| 欧美激情综合色综合啪啪五月| 中文精品一区二区三区| 亚洲五月六月| 青春草国产视频| 国产美女主播在线播放| 久久人人爽爽人人爽人人片av| 久久久久久久久四区三区| 国产精品国语对白| 亚洲欧美久久久久一区二区三区| 日韩av高清在线看片| 国内自拍欧美激情| 国产精品一区二区三区观看| 国产成人精品免高潮在线观看| 国产精品海角社区在线观看| 性日韩欧美在线视频| 精品一区二区三区国产| 91精品久久久久久久久久久久久 | 欧美日本国产在线| 日韩欧美一区三区| 国产一级特黄a大片99| 91精品国产精品| 国产精品久久久久av福利动漫| 中文字幕一区二区三区四区五区六区 | 国产欧美日韩91| 久久久久久久久久久99| 欧美激情一二区| 欧美性天天影院| 国产精品91在线观看| 国产精品久久久久久久久久直播 | 91精品国产一区二区三区动漫| 日韩中文视频免费在线观看| 欧美人成在线视频| 欧洲精品在线一区| 97人人香蕉| 精品国产综合| 精品欧美一区二区三区久久久| 久久伦理网站| 综合操久久久|