본문 바로가기

반응형
SMALL

분류 전체보기

(926)
CI/CD 파이프라인이란? https://www.servicenow.com/kr/products/devops/what-is-cicd-pipeline.html CI/CD 파이프라인이란? - ServiceNowCI/CD 파이프라인은 새로운 소프트웨어를 제작, 배포, 운영하는 프로세스입니다. 이 프로세스의 모니터링 및 자동화는 효과에 핵심적인 역할을 합니다.www.servicenow.com
VBScript란 무엇입니까? 소개 및 예시 https://www.guru99.com/ko/introduction-to-vbscript.html VBScript란 무엇입니까? 소개 및 예시VBScript는 다음과 같은 클라이언트 측 스크립팅 언어입니다. Java스크립트. VBScript는 Visual Basic Script의 약자로 가벼운 버전입니다. Microsoft 비주얼베이직. VBScript의 구문은 Visual Basic의 구문과 매우www.guru99.com
[라온피플 아카데미] Machine Learning 강의 리스트 https://laonple.blog.me/220776743537
Outer Join SELECT a.*, b.dname FROM temp a,      dept b WHERE a.DEPTNO = b.DEPTNO(+) ;      SELECT a.*, b.dname FROM temp a LEFT OUTER JOIN dept b ON a.DEPTNO = b.DEPTNO ;
Xplatform Log Location (Xplatform 로그위치) Xplatform Log Location (Xplatform 로그위치)C:\Users\User\AppData\LocalLow\TOBESOFT\XPlatform\ [Version]\XPLATFORM_[URL].log
System Design Master Template
Normalisation in SQL https://dev.to/mrcaption49/normalisation-in-sql-1jlo Normalisation in SQLNormalization in SQL is a process used to organize a database into tables and columns to reduce...dev.to
1 = ( case when) 구문을 where에서 사용하는 경우 WHERE 절에서 CASE WHEN 사용하는 이유WHERE 절에서 1 = (CASE WHEN) 구문을 사용하는 주된 이유는 복잡한 조건을 한 번에 표현하기 위해서입니다. 특히, 여러 개의 AND/OR 조건을 사용해야 하는 경우, CASE WHEN을 활용하면 코드를 더욱 간결하게 만들고 가독성을 높일 수 있습니다.예시 쿼리1. 부서 번호가 10, 20 또는 30이고 급여가 3000 이상인 사원 조회SQLSELECT *FROM empWHERE 1 = ( CASE WHEN deptno IN (10, 20, 30) AND sal >= 3000 THEN 1 ELSE 0 END); Use code with caution. 설명: deptno가 10, 20, 30 중 하나이고 sal이 3000 이상인..
Don’t learn to code. Learn to think https://medium.com/@cookatrice/dont-learn-to-code-learn-to-think-de4c2c774bc4 Don’t learn to code. Learn to think코딩보다는 생각하는법을 배워라.medium.com
[Visual JOIN]Understand how joins work by interacting and see it visually https://joins.spathon.com/ Visual JOINVisual JOIN Understand how joins work by interacting and see it visually INNER JOIN (or JOIN) OUTER JOIN (with UNION) Description » Hide description » {{ sql[current_join].desc }} Users ID Name {{user.id}} X {{user.name}} Add JOIN Name Like {{ join.namejoins.spathon.com

반응형
LIST