Assignment: Create Oracle table and query and maintain it

All of these questions need to be done using the table you created.
Remember, when I say single row function, I mean the functions we have looked at so far that return specific rows/records.
  1. Create an Oracle table with at minimum a varchar2 field, a char field, a number field with decimal places, a number field without decimal places, and a date field.

  2. Show me a description of the table.

  3. Put several records into the table.

  4. Show me all data in the table.

  5. Add a record to the table.

  6. Change a record on the table.

  7. Delete a record from the table.

  8. Alter the structure of the table by adding a field that contains a name in the format last, first.

  9. Alter the structure of the table by adding characters to the varchar2 field.

  10. Do a query that involves a condA AND either condB OR condC structure.

  11. Do a query that involves a condA AND condB and a condC that stands alone.

  12. Do a query using distinct.

  13. Do a query using a calculation and give the field an alias.

  14. Do a query using a single row function to do character manipulation.

  15. Do a query using a different single row function to do character manipulation.

  16. Do a query using a single row numeric function.

  17. Do a query using a different single row numeric function.

  18. Do a query using a single row date function.

  19. Do a query using a different single row date function.

  20. Do a query that involves a function within a function.

  21. Do a query that involves formatting.

  22. Do a query that involves another kind of formatting.

  23. Do a query using a sort.

  24. Do a query using a nested sort.

  25. Do a query using single row functions that flip the name so that it reads first last instead of last, first.