728x90 mysql29 [MySQL] You can't specify target table 에러 발생시 MySQL에서 update,delete문에서 서브쿼리를 사용할 경우 You can't specify target table 'xxx' for update in FROM clause 라는 에러가 발생할 경우가 있다 아래의 SQL문 실행 시 UPDATE uesrs SET like = 10, login_count = 0 WHERE ID = (SELECT MIN(id) FROM users); You can't specify target table 'uesrs' for update in FROM clause 에러가 발생한다 MySQL은 데이터를 추가나 갱신할 경우 동일한 테이블로 서브쿼리를 사용할 수 없다 Oracle이나 Postgresql에서는 문제 없이 실행된다 So.. DataBase 2022. 6. 29. [MySQL] snakecase to camelcase 변환 Function Oracle 의 경우에는 INITCAP Function이 기본적으로 제공되어 아래와 같이 사용하면 Snakecase 문자열을 Camelcase 로 변환할 수 있다 Oracle INITCAP Function 사용예시 SELECT SUBSTR(REPLACE(INITCAP('1' || 'abc_ddd_hhh_ooo_ddd'), '_'), 2) CAMELCASE FROM DUAL;결과: abcDddHhhOooDddMySQL의 경우 해당 Function이 기본적으로 제공되지 않는 관계로 아래와 같이 직접 생성해서 사용해야된다 initcap Function 작성 DELIMITER $$ DROP FUNCTION IF EXISTS `schema`.`initcap`$$ CREA.. DataBase 2021. 10. 6. [데브옵스를 위한 쿠버네티스 마스터] 쿠버네티스 환경에서 예제를 활용한 애플리케이션 개발 쿠버네티스 환경에서 WordPress + Mysql 프로젝트 개발 Kubernetes Examples Git https://github.com/kubernetes/examples https://github.com/kubernetes/examples/tree/master/mysql-wordpress-pd 시스템 구축 방법을 YAML로 정리하고 배포하시오 Wordpress MySql 쿠버네티스 배포 실습 GCP 에서 실습 kustomization.yaml 생성하기 https://kubernetes.io/ko/docs/tutorials/stateful-application/mysql-wordpress-persistent-volume/#kustomization-yaml-%EC%83%9D%EC%84%B1%ED%9.. 개발강의정리/DevOps 2021. 1. 22. [스프링 부트 개념과 활용] 4-10. 스프링 데이터 3부: MySQL 스프링 부트 개념과 활용 4. 스프링 부트 활용 포스팅 참조 정보 GitHub 공부한 내용은 GitHub에 공부용 Organizations에 정리 하고 있습니다 해당 포스팅에 대한 내용의 GitHub 주소 실습 내용이나 자세한 소스코드는 GitHub에 있습니다 포스팅 내용은 간략하게 추린 핵심 내용만 포스팅되어 있습니다 https://github.com/freespringlecture/springboot-concept-uses/tree/chap04-10-03-data-mysql freespringlecture/springboot-concept-uses 백기선님의 스프링 부트 개념과 활용 강의 내용 정리. Contribute to freespringlecture/springboot-concept-uses .. 개발강의정리/Spring 2019. 11. 18. [스프링 프레임워크 핵심 기술] 6-2. 스프링 AOP-프록시 기반 AOP 스프링 프레임워크 핵심 기술 포스팅 참조 정보 GitHub 공부한 내용은 GitHub에 공부용 Organizations에 정리 하고 있습니다 해당 포스팅에 대한 내용의 GitHub 주소 실습 내용이나 자세한 소스코드는 GitHub에 있습니다 포스팅 내용은 간략하게 추린 핵심 내용만 포스팅되어 있습니다 https://github.com/freespringlecture/spring-core-tech/tree/chap06-02-01-proxyaop freespringlecture/spring-core-tech 백기선님의 스프링 프레임워크 핵심 기술 강의 내용 정리. Contribute to freespringlecture/spring-core-tech development by creating an accou.. 개발강의정리/Spring 2019. 10. 6. [스프링 프레임워크 핵심 기술] 6-1. 스프링 AOP-개념 소개 스프링 프레임워크 핵심 기술 포스팅 참조 정보 GitHub 공부한 내용은 GitHub에 공부용 Organizations에 정리 하고 있습니다 해당 포스팅에 대한 내용의 GitHub 주소 실습 내용이나 자세한 소스코드는 GitHub에 있습니다 포스팅 내용은 간략하게 추린 핵심 내용만 포스팅되어 있습니다 https://github.com/freespringlecture/spring-core-tech/tree/chap06-01-aop_intro freespringlecture/spring-core-tech 백기선님의 스프링 프레임워크 핵심 기술 강의 내용 정리. Contribute to freespringlecture/spring-core-tech development by creating an account.. 개발강의정리/Spring 2019. 10. 6. [스프링 프레임워크 핵심 기술] 5-1. SpEL-스프링 Expression Language 스프링 프레임워크 핵심 기술 포스팅 참조 정보 GitHub 공부한 내용은 GitHub에 공부용 Organizations에 정리 하고 있습니다 해당 포스팅에 대한 내용의 GitHub 주소 실습 내용이나 자세한 소스코드는 GitHub에 있습니다 포스팅 내용은 간략하게 추린 핵심 내용만 포스팅되어 있습니다 https://github.com/freespringlecture/spring-core-tech/tree/chap05-01-spel freespringlecture/spring-core-tech 백기선님의 스프링 프레임워크 핵심 기술 강의 내용 정리. Contribute to freespringlecture/spring-core-tech development by creating an account on G.. 개발강의정리/Spring 2019. 10. 6. [스프링 프레임워크 핵심 기술] 4-2. 데이터 바인딩 추상화-Converter와 Formatter 스프링 프레임워크 핵심 기술 포스팅 참조 정보 GitHub 공부한 내용은 GitHub에 공부용 Organizations에 정리 하고 있습니다 해당 포스팅에 대한 내용의 GitHub 주소 실습 내용이나 자세한 소스코드는 GitHub에 있습니다 포스팅 내용은 간략하게 추린 핵심 내용만 포스팅되어 있습니다 https://github.com/freespringlecture/spring-core-tech/tree/chap04-02-converter_formatter freespringlecture/spring-core-tech 백기선님의 스프링 프레임워크 핵심 기술 강의 내용 정리. Contribute to freespringlecture/spring-core-tech development by creating .. 개발강의정리/Spring 2019. 10. 6. [스프링 프레임워크 핵심 기술] 4-1. 데이터 바인딩 추상화-PropertyEditor 스프링 프레임워크 핵심 기술 포스팅 참조 정보 GitHub 공부한 내용은 GitHub에 공부용 Organizations에 정리 하고 있습니다 해당 포스팅에 대한 내용의 GitHub 주소 실습 내용이나 자세한 소스코드는 GitHub에 있습니다 포스팅 내용은 간략하게 추린 핵심 내용만 포스팅되어 있습니다 https://github.com/freespringlecture/spring-core-tech/tree/chap04-01-propertyeditor freespringlecture/spring-core-tech 백기선님의 스프링 프레임워크 핵심 기술 강의 내용 정리. Contribute to freespringlecture/spring-core-tech development by creating an ac.. 개발강의정리/Spring 2019. 10. 6. [스프링 프레임워크 핵심 기술] 3-2. Vaildation 추상화 스프링 프레임워크 핵심 기술 포스팅 참조 정보 GitHub 공부한 내용은 GitHub에 공부용 Organizations에 정리 하고 있습니다 해당 포스팅에 대한 내용의 GitHub 주소 실습 내용이나 자세한 소스코드는 GitHub에 있습니다 포스팅 내용은 간략하게 추린 핵심 내용만 포스팅되어 있습니다 https://github.com/freespringlecture/spring-core-tech/tree/chap03-02-validation freespringlecture/spring-core-tech 백기선님의 스프링 프레임워크 핵심 기술 강의 내용 정리. Contribute to freespringlecture/spring-core-tech development by creating an accoun.. 개발강의정리/Spring 2019. 10. 6. [스프링 프레임워크 핵심 기술] 3-1. Resource 추상화 스프링 프레임워크 핵심 기술 포스팅 참조 정보 GitHub 공부한 내용은 GitHub에 공부용 Organizations에 정리 하고 있습니다 해당 포스팅에 대한 내용의 GitHub 주소 실습 내용이나 자세한 소스코드는 GitHub에 있습니다 포스팅 내용은 간략하게 추린 핵심 내용만 포스팅되어 있습니다 https://github.com/freespringlecture/spring-core-tech/tree/chap03-01-resource freespringlecture/spring-core-tech 백기선님의 스프링 프레임워크 핵심 기술 강의 내용 정리. Contribute to freespringlecture/spring-core-tech development by creating an account .. 개발강의정리/Spring 2019. 10. 6. [스프링 프레임워크 핵심 기술] 2-9. IoC컨테이너-ResourceLoader 스프링 프레임워크 핵심 기술 포스팅 참조 정보 GitHub 공부한 내용은 GitHub에 공부용 Organizations에 정리 하고 있습니다 해당 포스팅에 대한 내용의 GitHub 주소 실습 내용이나 자세한 소스코드는 GitHub에 있습니다 포스팅 내용은 간략하게 추린 핵심 내용만 포스팅되어 있습니다 https://github.com/freespringlecture/spring-core-tech/tree/chap02-09-resourceloader freespringlecture/spring-core-tech 백기선님의 스프링 프레임워크 핵심 기술 강의 내용 정리. Contribute to freespringlecture/spring-core-tech development by creating an ac.. 개발강의정리/Spring 2019. 10. 6. 이전 1 2 3 다음 💲 추천 글 728x90