Suppose we have a table of student looking like this. The table name is "tblStudent". 1. Select all cases and all columns Select * from tblStudent SQL is case-insensitive, which means that "select", "Select" and "SELECT" are all equivalent. The "*" in the above SQL statement means selecting all columns. The result is below. 2. Select specific columns Select StudentID, FirstName, LastName from tblStudent The result is below. 3. Generate new fields in the displayed result Select StudentID, FirstName+ ' '+ LastName as FullName, TotalScore/3 as AvgScore from tblStudent The result is below. 4. Select with a criteria Here we want to select all cases with TotalScore is at or above 200. Select * from tblStudent where TotalScore>=200 The result is below. The criteria can contain multiple conditions, such as: Select * from tblStudent where TotalScore>=200 and Math>70 5. Select with ordered result Select * from tblStudent ord...