mysql> INSERT INTO Shippers (CompanyName, Phone)
    -> VALUES ('Canada Post', '416-555-1221');
Query OK, 1 row affected (0.00 sec)

mysql> select * from shippers;
+-----------+------------------+----------------+
| ShipperID | CompanyName      | Phone          |
+-----------+------------------+----------------+
|         1 | Speedy Express   | (503) 555-9831 | 
|         2 | United Package   | (503) 555-3199 | 
|         3 | Federal Shipping | (503) 555-9931 | 
|         4 | Canada Post      | 416-555-1221   | 
+-----------+------------------+----------------+
4 rows in set (0.01 sec)
