sudo mysql -u root -p password
create user 'root'@'%' identified by 'password';
grant all privileges on *.* to 'root'@'%';
flush privileges;
C:\Bitnami\wampstack-7.3.17-1\mysql\bin>mysql -u root -p
000000
create user 'root'@'%' identified by 'password';
grant all privileges on *.* to 'root'@'%';
heidisql에서 우클릭 > 새로생성 > 데이터베이스 > node
node > 우클릭 테이블 생성 > 테이블이름 sample > 추가 버튼 세번 클릭
image 폴더 02.png 대로 생성후 쿼리탭
INSERT INTO sample(username, age, comment, created)
VALUES('홍길동', 20, '아버지를 아버지라...', '2020-05-03 12:40:50');
INSERT INTO sample SET
username ='홍길순',
age =25,
comment ='어머니를 어머니라...',
created ='2020-05-03 12:42:50';
npm i mysql2
npm i moment
mysql : callback version, mysql2 : promise version