Created
December 28, 2018 16:13
-
-
Save boina-n/a413549622d364c415edb9e62bf11c26 to your computer and use it in GitHub Desktop.
because i suck in mysql ... How to create a simple mysql DB with records
This file contains hidden or 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
create database boina-n_db01; | |
show databases; | |
use boina-n_db01; | |
create table mytable01 (name varchar(20), sex CHAR(1), birth DATE); | |
SHOW TABLES; | |
inset into mytable01 value ('boina-n','M','1989-12-22') | |
select * from mytable01; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment