Created
February 17, 2021 23:53
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mysql-sql [learning]> INSERT INTO names(first_name) | |
-> VALUES('Richard'); | |
Query OK, 1 row affected (0.0948 sec) | |
mysql-sql [learning]> SELECT * FROM names; | |
+ - - + - - - - - - + | |
| id | first_name | | |
+ - - + - - - - - - + | |
| 1 | Richard | | |
+ - - + - - - - - - + | |
1 row in set (0.0010 sec) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment