전체 글 (159) 썸네일형 리스트형 프로그래머스 7 day SQL 챌린지 답 -- 코드를 입력하세요 SELECT ANIMAL_OUTS.ANIMAL_ID, ANIMAL_OUTS.NAME FROM ANIMAL_OUTS LEFT OUTER JOIN ANIMAL_INS ON(ANIMAL_OUTS.ANIMAL_ID = ANIMAL_INS.ANIMAL_ID) WHERE ANIMAL_INS.ANIMAL_ID IS NULL -- 코드를 입력하세요 -- 보호 시작일보다 입양일이 더 빠른 동물의 아이디와 이름을 조회하는 SQL문을 작성해주세요. SELECT ANIMAL_OUTS.ANIMAL_ID, ANIMAL_OUTS.NAME FROM ANIMAL_OUTS LEFT OUTER JOIN ANIMAL_INS ON(ANIMAL_OUTS.ANIMAL_ID = ANIMAL_IN.. index 생성 예시 elasticsearch index 생성 방법. https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping.html Mapping | Elasticsearch Reference [7.3] | Elastic Mapping is the process of defining how a document, and the fields it contains, are stored and indexed. For instance, use mappings to define: which string fields should be treated as full text fields.which fields contain numbers, dates, or geolo.. 예시 elasticsearch reindex와 샤드 curl -X POST "localhost:9200/_reindex?pretty" -H 'Content-Type: application/json' -d' { "source": { "index": "twitter" }, "dest": { "index": "new_twitter" } } ' https://www.elastic.co/guide/en/elasticsearch/reference/5.4/docs-reindex.html Reindex API | Elasticsearch Reference [5.4] | Elastic Reindex does not attempt to set up the destination index. It does not copy the settings of the source ind.. couchbase cons - 1 확장이 용이. 클러스터에 서버 추가또는 삭제가 쉽다. 수평 확장 가능. (우리팀은 이것때매 쓴다) - 2 관리 툴있음(의외로 편한 요소 중 하나. 근데 이게 좀 애매할때가 있다) - 3 카우치베이스 서버 관리 REST API를 통해 클러스터를 관리할 수 있습니다. elasticsearch는 할 수 있고 couchbase로는 못하는걸 보여줘야 되는거아닌가? 물론 그걸 couchbase 공식문서에서 보여주진않겠지만 ㅋㅋ 3의 예시. 내가 쓰던거랑 머 결국 똑같은데 rest api 라는 것만 다를 뿐이네 $ curl -v http://localhost:8093/query/service \ -d 'statement=SELECT text FROM tweets LIMIT 1' 출처 (뷰) : htt.. spring POJO vs Java Bean POJO JAVA BEAN It doesn’t have special restrictions other than those forced by Java language. It is a special POJO which have some restrictions. It doesn’t provide much control on members. It provides complete control on members. It can implement Serializable interface. It should implement serializable interface. Fields can be accessed by their names. Fields are accessed only b.. 일본과장님과의 대화 1 여기가 전부가 아니다. 퇴근 후 자기의 삶에 투자하라. 근로자 / 고용자 / 투자자 중 근로자가 하고싶은가? remote 근무를 꿈꾸는 사람으로서 늘 혼자서 문제를 온전히 해결하는 버릇을 들이자 python for iterate loop check next item https://stackoverflow.com/questions/1011938/python-previous-and-next-values-inside-a-loop Python - Previous and next values inside a loop How can I do thing like this in python? foo = somevalue previous = next = 0 for (i=1; i stackoverflow.com This should do the trick. foo = somevalue previous = next_ = None l = len(objects) for index, obj in enumerate(objects): if obj == foo: if index > 0: prev.. 이전 1 ··· 9 10 11 12 13 14 15 ··· 20 다음