일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- mysql
- Python
- oracle
- java
- 리눅스
- SQL
- 명령어
- group by
- docker
- PostgreSQL
- spring
- IntelliJ
- rsync
- analytics4
- 트랜잭션
- 티스토리챌린지
- Javascript
- MariaDB
- git
- JPA
- Linux
- top
- 오블완
- network
- MongoDB
- 차이점
- mssql
- DBMS
- API
- 자바
- Today
- Total
목록분류 전체보기 (346)
hanker
class Test{ public static long sum(int[] a){ long sum = 0; for(int i = 0 ; i < a.length; i++) { sum += a[i]; } return sum; } }
DATE_FORMAT(날짜(날짜컬럼), "포맷 형식") ex) 2020-12-22 ( NOW() = 현재 날짜를 불러온다 )SELECT DATE_FORMAT(NOW(),'%Y-%m-%d') AS DATE FROM DUAL 이 외에도 개발을 하다보면 특정 테이블에 있는 날짜컬럼을 사용할 때가 있다.이 테이블에서 연도만 추출할 때 select t_bno, t_title, date_format(t_regdate, "%Y") as reg_date from t_board;이런식으로 사용하면 된다. 만약 최소 연도, 월, 일이 필요하면select t_bno, t_title, date_format(t_regdate, "%Y%m%d") as reg_date from t_boardorder by reg_d..
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int C = sc.nextInt(); for(int i = 0 ; i ..
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); String[] ar = new String[N]; for(int i = 0 ; i < N ; i++) { int sum = 0; int tmp = 0; ar[i] = sc.next(); for(int j = 0 ; j < ar[i].toCharArray().length ; j++) { char[] ox = new char[ar[i].toCharArray().length]; ox[j] = ar[i].toCharArray()[j]; if(ox[j] ..
//현재 연도 4자리 $thisYear = date("Y"); //ex) 2020 //현재 연도 2자리 $thisYear = date("y"); //ex) 20 //현재 월 (0포함 2자리) $thisMonth = date("m"); //ex) 01 ~ 12 //현재 월 (0제외) $thisMonth = date("n"); //ex) 1 ~ 12 //현재 일 (0포함 2자리) $thisDay = date("d"); //ex) 01 ~ 31 //현재 일 (0제외) $thisDay = date("j"); //ex) 1 ~ 31
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int[] ar = new int[N]; int maxScore = 0; float sum = 0; float avr = 0; for(int i = 0 ; i < N ; i++) { ar[i] = sc.nextInt(); if(maxScore < ar[i]) { maxScore = ar[i]; } } for(int i = 0 ; i < N ; i++) { float tmp = (float) (ar[i] * 100) / maxScore ; sum +..
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int[] ar = new int[10]; int tmp = 0; int cnt = 0; boolean flag2 = false; for(int i = 0 ; i < 10 ; i++) { boolean flag = true; int A = sc.nextInt(); tmp = A % 42; if(tmp == 0) { flag2 = true; } for(int j = 0 ; j < 10 ; j++) { if(ar[j] == tmp) { flag = false; } } if(flag) { a..
import java.util.Scanner; public class Main { public static void main(String args[]) throws Exception{ Scanner sc = new Scanner(System.in); int A = sc.nextInt(); int B = sc.nextInt(); int C = sc.nextInt(); int x = A * B * C; int[] ar = new int[10]; while(x > 0) { ar[x % 10] += 1; x /= 10; } for(int i = 0 ; i < 10 ; i++) { System.out.println(ar[i]); } } }
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = 9; int[] ar = new int[9]; int tmp = 0; int maxInt = 0; for(int i = 0 ; i < 9 ; i++) { ar[i] = sc.nextInt(); if(tmp < ar[i]) { tmp = ar[i]; maxInt = i+1; } } System.out.println(tmp); System.out.println(maxInt); } }
변수가 들어가는 부분을 제외한 부분을 ''으로 묶어준다. 1 . index로 선택하기 var id = '16077'; $('[index='+ id + ']'); 2 . id로 선택하기 var id = '16077'; $('#'+ id ); 3 . class로 선택하기 var id = '16077'; $('.'+ id ); 출처 : github.com/sooojungee/TIL/blob/master/jQuery/180627.%5BjQuery%5D%20%EC%84%A0%ED%83%9D%EC%9E%90%EC%97%90%20%EB%B3%80%EC%88%98%20%EB%84%A3%EA%B8%B0.md