Lesson 4: Insert data in the remote database

In this lesson, you insert data into the remote database to demonstrate that a schema change can proceed even if there are operations in the remote database that need to be uploaded.

 To insert data in the remote database
  • Using the instance of Interactive SQL that's connected to the remote database, execute the following SQL to insert a row in the customer table:

    INSERT INTO customer VALUES( 2, 'Sue Slow', '602-411-5467' );
    COMMIT;