일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 17837
- 단축키
- 알고리즘
- ubuntu
- 프로그래머스
- 데이터전달
- Java
- IntelliJ
- github
- vscode
- git
- insert
- spring
- 데이터
- 제어반전
- Android
- mysql
- 16197
- 두 동전
- broadcastreceiver
- 백준
- data
- activity
- Algorithm
- 큐빙
- intent
- Jenknis
- goland
- service
- 안드로이드
- Today
- Total
목록전체 글 (87)
해보자
소스코드 #include #include #include using namespace std; struct pos { int y, x, d; }; struct fishes { int y, x, size, d; }; int map[20][20]; int N; pos shark; int dy[4] = { 0,0,-1,1 }; int dx[4] = { -1,1,0,0 }; int move(int size) { pos start = { shark.y, shark.x, 0 }; // 상어 초기 위치 queue q; // 상어의 위치 q.push(start); bool visited[20][20] = { false }; vector vf; // 크기, y, x // 먹을 수 있는 물고기 추출 while (!q.em..
소스코드 #include #include #include using namespace std; int N, L, R; int map[50][50]; // map bool visited[50][50] = { false }; // 상하좌우 int dy[4] = { 1,-1,0,0 }; int dx[4] = { 0,0,1,-1 }; bool bfs(int y, int x) { vector friends; queue q; visited[y][x] = true; friends.push_back({ y,x }); q.push({ y, x }); int total = 0; while (!q.empty()) { int cy = q.front().first; int cx = q.front().second; q.pop()..
소스코드 #include #include #include #include using namespace std; vector house; vector chicken; int result = INT_MAX; int N, M; int calcDistance(vector t_chicken) { int total = 0; for (int i = 0; i < house.size(); i++) { int distance = INT_MAX; for (int j = 0; j < t_chicken.size(); j++) { distance = min(distance, abs(t_chicken[j].first - house[i].first) + abs(t_chicken[j].second - house[i].second));..
create CREATE TABLE `table1` ( `column1` INT(10), `column2` INT(10) ); 위와 같은 table이 있다고 가정해보자. insert INSERT INTO table1 ( column1, column2 ) VALUES ( 1, COALESCE((SELECT MAX(t.column2) + 1 FROM table1 t WHERE t.column1 = 1),1) ); 위 질의문을 4번 실행시키면 아래와 같은 결과를 얻을 수 있다.
방금 삽입된 레코드 ID 가져오기 $this->db->insert_id() 쿼리 적용되는 열 수 가져오기 $this->db->affected_rows() Reference http://www.ciboard.co.kr/user_guide/kr/database/helpers.html
웹 구현 : HTML, CSS, JavaScript 나머지 기술 : 위 세가지를 보조하기 위한 기술들. php, jsp, .net - server side script language React, Jquery, Vue.js - javascript를 어떻게 사용할지 도와주는 libary HTML (Hyper Text Markup Language) 문서의 내용과 기술을 짜는 것으로, 콘텐츠를 정하는 것 전체적인 데이터의 구조를 나타내는 것 이미지를 클릭했을 때 이미지가 더 확장되어 보여짐 CSS 모양을 결정하는 것 형태, 표현 javascript 동적인 움직임. 기획, 코딩, 인프라, 자잘한 디자인 등
$mysqli->begin_transaction(); $insert1 = $mysqli->query(" > "); $insert2 = $mysqli->query(" > "); if($insert1 && $insert2) { $mysqli->commit(); } else { $mysqli->rollback(); } Reference https://stackoverflow.com/questions/25263500/how-to-insert-into-two-tables-using-php-with-transaction/25263624
composer 컴포저는 PHP의 의존성 관리도구이다. 필요한 확장 기능을 쉽게 설치해주는 제공 프로젝트에서 필요한 확장 기능을 통합해서 관리해주는 도구 download Windows 환경에서 진행했으므로 아래 링크에서 다운로드 하면 자동으로 설치된다. https://getcomposer.org/Composer-Setup.exe cmd창에 composer를 입력했을 때 상세 내용이 나온다면 설치가 잘 된 것이다. Reference https://www.lesstif.com/php-and-laravel/php-composer-23757293.html