본문 바로가기

명사 美 비격식 (무리 중에서) 아주 뛰어난[눈에 띄는] 사람[것]

Database

(36)
각 열에서 검색값을 포함하는 결과를 가져오다, 동적 반복문 sql table의 열값을 가진 리스트를 foreach로 돌려 %포함되는값%을 매칭해 가져오도록한다. SELECT FROM EMP_EDU WHERE LOWER(REPLACE(${field}, ' ', '')) LIKE LOWER(CONCAT('%', REPLACE(#{searchText}, ' ', ''), '%'))
테이블의 열 정보 출력하기 테이블의 열 정보 출력하기 SHOW COLUMNS FROM emp_info;
host '' is not allowed to connect to this mariadb server, 모든 IP 접근 허용하기 이 db서버에 접근하기를 허용하지 않았다는 뜻. host '' is not allowed to connect to this mariadb server MYSQL CLIENT 열고 모든 IP 허용 GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '패스워드';
ON UPDATE와 ON DELETE: RESTRICT, CASCADE FOREIGN KEY를 설정할때 뒤에 따라 붙는 ONUPDATE와 ON DELETE에 대해 알아보자. ON UPDATE RESTRICT ON DELETE RESTRICT 수정/삭제 시 참조행이 영향받지않도록한다. ON UPDATE CASCADE ON DELETE CASCADE 수정/삭제 시 참조행에도 반영되도록 한다.
MySQL에서 시퀀스 = AUTO_INCREMENT MySQL에서는 시퀀스를 직접적으로 지원하지않는다. 대신 MySQL에서는 AUTO_INCREMENT를 사용하여 시퀀스와 유사한 동작을 구현할 수 있다. 이는 새로운 레코드가 추가될때마다 값이 1씩 증가한다. 주로 테이블의 기본열에 사용되어 고유한 값을 가지도록 보장할때 사용된다.
Toad란? TOAD Tool for Oracle Application Developers https://www.quest.com/toad/ Toad Database Developer Tools Toad is the premier database solution for developers, admins and data analysts. Manage complex database changes with a single database developer tool. www.quest.com 데이터베이스와 상호작용하기 위한 데이터베이스 관리 도구 SQL 개발 및 편집, 데이터베이스 개발, 데이터 모델링, 성능 최적화 SQL스크립트 실행 및 디버깅 등 데이터베이스 개발 및 관리 작업을 더욱 효율적으로 수행할 수 있도록 지원한다.
Toad for MySQL 다운 및 실행 / DB CONNECT까지 앞서 Toad에 대해 알아봤다. https://standout.tistory.com/1130 Toad란? TOAD Tool for Oracle Application Developers https://www.quest.com/toad/ Toad Database Developer Tools Toad is the premier database solution for developers, admins and data analysts. Manage complex database changes with a single database developer tool. www standout.tistory.com Toad 다운 크롬 url창에 복붙 http://community-downloads.quest.com/toad..
MySQL Connector 다운 링크접속 - platform independent - 다운 - no thanks - 완료 https://dev.mysql.com/downloads/connector/j/ MySQL :: Download Connector/J MySQL Connector/J is the official JDBC driver for MySQL. MySQL Connector/J 8.0 and higher is compatible with all MySQL versions starting with MySQL 5.7. Additionally, MySQL Connector/J 8.0 and higher supports the new X DevAPI for development with MySQL Ser dev.mysql.com