WEEK 11
This week , the lecture continues with select statement. the select statement retrieve information from only one table. the function of using distinct is when you decided to eliminate any unnecessary or duplicate data inside the table. For example : SELECT stuId, sName, lastName; // choose the selected attributes
FROM STUDENT; // from which table
next, miss Emy decided to do some exercise on normalization part because most of us having problem and difficulties in understanding this topic.
in lab, we continue doing the EXHIBITION database using mySQL and learn to write select statement.