| http://www.w3.org/ns/prov#value | - 1 row in set (0.00 sec)Finally, add a data i.e. row to table books using INSERT statement, run: mysql> INSERT INTO authors (id,name,email) VALUES(1,Vivek,xuz@abc.com); Sample outputs:Query OK, 1 row affected (0.00 sec)Try to add few more rows to your table: mysql> INSERT INTO authors (id,name,email) VALUES(2,Priya,p@gmail.com); mysql> INSERT INTO authors (id,name,email) VALUES(3,Tom,tom
|