본문 바로가기

기술스택을 쌓아보자83

[조각SQL] COL의 명목변수 값 구하기/ SQL DISTINCT 이럴 때가 있다. 칼럼이 categorical value를 가지고 있으며, 이 종류를 알고 싶을 때, SQL에는 UNIQUE 혹은 DISTINCT를 사용한다. SELECT DISTINCT column1, column2, ... FROM table_name; 참고자료 더보기 SQL SELECT DISTINCT Statement W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more. www.w3schools.com.. 2021. 11. 9.
[조각DB] DB 테이블 리스트 조회/테이블 칼럼(열) 검색하기 DB 내의 테이블 리스트 및 정보 조회하기 mysql> SHOW TABLE STATUS; mysql> show tables; mysql> SHOW TABLE STATUS; +------------+--------+---------+------------+--------+----------------+-------------+-----------------+--------------+-----------+----------------+---------------------+---------------------+------------+-----------------+-- --------+----------------+---------+ | Name | Engine | Version | Row_format .. 2021. 10. 27.
[codewars/itertools] 파이썬으로 경우의 수 구하기/여러방법으로 자료형 내 원소의 순열과 조합 구하기/Permutation & Combination with Python with multiple list by itertools : The observed PIN 오늘은 파이썬 코드를 이용해 조합을 구하는 문제를 접했습니다. 다같이 레벨업! Codewars: Achieve mastery through challenge Codewars is a coding practice site for all programmers where you can learn various programming languages. Join the community and improve your skills in many languages! www.codewars.com KATA 분석하기 탐정이 된 당신! 당신은 지금 대도둑 Robby the robber의 창고를 발견했습니다. 이 안에는 여태 훔친 모든 물건들이 담겨있고, 우리는 운좋게 Robby the robber가 도어락을 누르는 모습까.. 2021. 10. 8.
[git/조각조각깃/조깃]깃 커밋메시지 수정하기 git commit amend 본론으로 고! 가장 최근 커밋 메시지를 수정하고 싶은 경우 git commit --amend 위 명령어를 입력하면, 아래와 같이 vi 편집기가 나온다. 아래에서 temp commit이 내가 이전에 입력한 커밋 메시지에 해당되는데, 메시지 부분을 수정해주면 된다. temp commit # Please enter the commit message for your changes. Lines starting # with '#' will be ignored, and an empty message aborts the commit. # # Date: Mon Oct 4 13:21:58 2021 +0900 # # On branch hoseung2/*** # Changes to be committed: # modified.. 2021. 10. 4.