일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- Udemy
- 박스점프
- 걷기
- 월별 운동일지
- 독서 리뷰
- JavaScript
- MySQL
- github
- dql
- 크로스핏
- express
- 홈트
- 활동 킬로칼로리
- dml
- 러닝
- 메디패치
- SQL
- nodejs
- code kata
- Til
- 달리기
- node.js
- 습윤밴드
- git
- 위코드
- 드림코딩
- wecode
- 운동일지
- node
- axios
- Today
- Total
목록위코드 (46)
RISK IT
데이터 추가/수정/삭제 DML(Data Manipulation Language): 데이터를 조작하는 쿼리문 INSERT, UPDATE, DELETE문이 대표적인 쿼리문 실습 예시 ✍️ 입력 mysql> SHOW DATABASES; 💻 출력 +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | sys | | westagram | +--------------------+ 5 rows in set (0.01 sec) ✍️ 입력 mysql> USE westagram; 💻 출력 Reading table information for completion of ta..
mySQL 설치 DDL(Data Define Language): 스키마 내의 객체를 정의하고 관리할 때 사용되는 쿼리문 데이터베이스 생성, 접근, 생성, 변경, 삭제 해보기 ✍️ 입력 mysql> SHOW DATABASES; // 초기상태 💻 출력 +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | sys | +--------------------+ 4 rows in set (0.00 sec) ✍️ 입력 mysql> CREATE DATABASE westagram character set utf8mb4 collate utf8mb4_general_ci;..
이 번 글은 assignment 2: 게시글 등록하기 assignment 3: 게시글 목록 조회하기 두 개 진행한 소스코드이다. const users = [ { id: 1, name: "Rebekah Johnson", email: "Glover12345@gmail.com", password: "123qwe", }, { id: 2, name: "Fabian Predovic", email: "Connell29@gmail.com", password: "password", }, ]; const posts = [ { id: 1, title: "간단한 HTTP API 개발 시작!", content: "Node.js에 내장되어 있는 http 모듈을 사용해서 HTTP server를 구현.", userId: 1, }, ..
SIMPLE API Node.js에서 제공하는 built-in 모듈인 http를 사용해서 API를 구현해봅니다. 소스코드 분석 const users = [ { id: 1, name: "Rebekah Johnson", email: "Glover12345@gmail.com", password: "123qwe", }, { id: 2, name: "Fabian Predovic", email: "Connell29@gmail.com", password: "password", }, ]; const posts = [ { id: 1, title: "간단한 HTTP API 개발 시작!", content: "Node.js에 내장되어 있는 http 모듈을 사용해서 HTTP server를 구현.", userId: 1, }, {..
오늘 배운 것 Database 기초 과제: db.diagram을 이용한 스타벅스 음료 페이지 모델링 Node.js intro(Flipped Learning) 과제: built-in file system module 실습 function csvToJSON(csv) { const lines = csv.split("\n"); const result = []; const headers = lines[0].split(","); for (let i = 1; i < lines.length; i++) { if (!lines[i]) continue; const obj = {}; const currentline = lines[i].split(","); for (let j = 0; j < headers.length; j++..