Using SQL Developer 
        
        Run your first command
        A sample invoice database has already been loaded into your accounts.
        The first SQL command we will run, finds all the customers in the database. 
        The SQL is:
          SELECT *
          FROM Customer
        To run this command:
        - Type the command in (on one or two lines, using upper or lower case)
- Click the Run button
- Enlarge the results screen to see the output

        Run your second command
          Now find all the items in the ITEM table
        To run this command:
          - Type in the SQL command on the next line (no need to delete SELECT * FROM Customer)
- Highlight the command
- Click the Run button
If you got an error message
          
- Check your spelling!
- Ensure that the command you want to run is highlighted
 (Once there is more than one command, you need to specify which command you wish to run)