MySQL: Difference between revisions
(Created page with "{| width=500 style="float:right; margin-left: 10px; margin-top: -56px;" |Previous: Databases |Next: Coding against databases |} == Material for the lesson == Note: The powerpoint has been updated with transactions, but not the video.<br> Video: [https://panopto.dtu.dk/Panopto/Pages/Viewer.aspx?id=7b280a2a-256e-46c8-8f79-af2701260171 Creating databases, data types]<br> Video: [https://panopto.dtu.dk/Panopto/Pages/Viewer.aspx?id=9162c944-634a-4c14-b784-af270125d68...") |
|||
Line 8: | Line 8: | ||
Video: [https://panopto.dtu.dk/Panopto/Pages/Viewer.aspx?id=9162c944-634a-4c14-b784-af270125d681 Using SQL language to create tables, manipulate data and retrieve data.]<br> | Video: [https://panopto.dtu.dk/Panopto/Pages/Viewer.aspx?id=9162c944-634a-4c14-b784-af270125d681 Using SQL language to create tables, manipulate data and retrieve data.]<br> | ||
Video: [https://panopto.dtu.dk/Panopto/Pages/Viewer.aspx?id=3158d3b6-b07a-4f3e-9211-af270125af81 Functions in SQL (aggregate, string, math, etc), loading files into tables, vice versa]<br> | Video: [https://panopto.dtu.dk/Panopto/Pages/Viewer.aspx?id=3158d3b6-b07a-4f3e-9211-af270125af81 Functions in SQL (aggregate, string, math, etc), loading files into tables, vice versa]<br> | ||
Powerpoint: [https://teaching.healthtech.dtu.dk/material/ | Powerpoint: [https://teaching.healthtech.dtu.dk/material/22112/HPCLife12-MySQL.ppt MySQL]<br> | ||
Video: [https://panopto.dtu.dk/Panopto/Pages/Viewer.aspx?id=a3d3779d-2d3b-4fa8-83f6-af170071d48b Exercises] | Video: [https://panopto.dtu.dk/Panopto/Pages/Viewer.aspx?id=a3d3779d-2d3b-4fa8-83f6-af170071d48b Exercises] | ||
Revision as of 11:49, 6 March 2024
Previous: Databases | Next: Coding against databases |
Material for the lesson
Note: The powerpoint has been updated with transactions, but not the video.
Video: Creating databases, data types
Video: Using SQL language to create tables, manipulate data and retrieve data.
Video: Functions in SQL (aggregate, string, math, etc), loading files into tables, vice versa
Powerpoint: MySQL
Video: Exercises
Exercises
1) In /home/projects/pr_course there are 3 files: persons.csv, marriage.csv and disease.csv. That is data that corresponds to the database design exercise 2 last week. Your task is to investigate the data, so you know how it looks. Then you must create a database on pupil1 MySQL database system with the ’mysql’ command. You have the privilege to create a database with your DTU username, (the name of the databse is your username), nothing else. In that database, create tables that match the 3 files. Load the files into the tables.
Table overview: persons.csv cpr, first name, last name, height, weight, biological mother, biological father marriage.csv male cpr, female cpr, start of marriage, end of marriage disease.csv cpr, name of disease, date of discovery
2) Use the SQL language to answer some questions about the data or manipulate it in some ways.
- Who do not have a father ?
- How many do not have a mother?
- How many cases of cancer - any type?
- How many persons had cancer – any type?
- Who are or have been married to someone named ’Finn’?
- Create 2 imaginary persons. Marry them to each other. Make them have a kid. Give the kid a broken nose. Insert all this info in the database.
- Delete everyone with the last name ’Rapacki’. Make sure that database is consistent afterwards, like there is no marriages to non-existing persons or references to non-existing parents.
The solutions to be handed in are the SQL statements, that solves the problems.