Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
mysql> create table testa ( id int not null primary key AUTO_INCREMENT, name char(30) not null ) ;
Query OK, 0 rows affected (0.43 sec)
mysql> create table testb ( id int not null primary key AUTO_INCREMENT, name char(30) not null ) ;
Query OK, 0 rows affected (0.00 sec)
mysql> insert into testa ( name ) values ( 'bob' ), ( 'tom' ), ( 'keith' ) ;
Query OK, 3 rows affected (0.44 sec)
Records: 3 Duplicates: 0 Warnings: 0
mysql> insert into testb ( name ) values ( 'fred' ), ( 'John' ), ( 'Dave' ), ( 'Phil' ) ;
Query OK, 4 rows affected (0.40 sec)
Records: 4 Duplicates: 0 Warnings: 0
mysql> select * from testa ;
+----+-------+
| id | name |
+----+-------+
| 1 | bob |
| 2 | tom |
| 3 | keith |
+----+-------+
3 rows in set (0.00 sec)
mysql> select * from testb ;
+----+------+
| id | name |
+----+------+
| 1 | fred |
| 2 | John |
| 3 | Dave |
| 4 | Phil |
+----+------+
4 rows in set (0.00 sec)
mysql> replace into testa select * from testb ;
Query OK, 4 rows affected (0.00 sec)
Records: 4 Duplicates: 3 Warnings: 0
mysql> select * from testa ;
+----+------+
| id | name |
+----+------+
| 1 | fred |
| 2 | John |
| 3 | Dave |
| 4 | Phil |
+----+------+
4 rows in set (0.00 sec)
mysql> select * from testb ;
+----+------+
| id | name |
+----+------+
| 1 | fred |
| 2 | John |
| 3 | Dave |
| 4 | Phil |
+----+------+
4 rows in set (0.00 sec)
mysql>