정보처리기사 합격 후기 / 합격률
·
자격증
본인은 컴퓨터공학 전공자입니다 전공자 기준 경험을 말씀드리려 해요저는 국비와 실기 공부를 병행하느라 고생을 좀 했네요.. 대학생이시면 미리미리 준비합시다 여러분..국비 수료 후 글을 써 조금 늦은 감이 있지만 제 경험을 공유하려 해요 필기는 최근 합격률이 50~60% 정도가 나오네요 제가 느끼기에 필기시험은 객관식 4지선다이기 때문에 기출문제만 열심히 준비하셔도 합격에는 지장 없을거에요CS지식이 부족하다면 기본서나 강의를 듣는것도 중요하다고 생각해요 주변에서는 수제비나 이기적을 많이 보더라구요하지만 시간이 촉박하시다면 기출문제 위주로 준비하시면 충분히 합격하실거라 생각합니다전공 수업에서 배운 내용이 정처기 시험에 많이 도움이 될거라 기대를 안했는데요 대부분 내용이 전공수업에서 들었던 내용이라 신기하고 열..
[React] 프로젝트 생성
·
React
우선 Node.js를 설치하고 VS Code 환경에서 진행한다 Node.js — 어디서든 JavaScript를 실행하세요Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.nodejs.org  Visual Studio Code - Code Editing. RedefinedVisual Studio Code redefines AI-powered coding with GitHub Copilot for building and debugging modern web and cloud applications. Visual Studio Code is free and available on your favorite platform - Linux..
[Spring Boot] MVC패턴을 통해 DB 데이터 불러오기 (Oracle DB)
·
Spring
Oracle Database 19c Download for Microsoft Windows x64 (64-bit) | Oracle 대한민국Oracle Database 19c Grid Infrastructure (19.3) for Microsoft Windows x64 (64-bit) Contains the Grid Infrastructure Software including Oracle Clusterware, Automated Storage Management (ASM), and ASM Cluster File System. Download and install prior to installwww.oracle.com이번 프로젝트는 Oracle 19c 버전으로 작성했다sqlplus sys/oracle as ..
[MySQL] 테이블 생성, 조회, 수정, 삭제
·
MySQL
[MySQL] 계정 및 권한 생성[MySQL] MySQL 설치MySQL :: Download MySQL Installer (Archived Versions)Please note that these are old versions. New releases will have recent bug fixes and features! To download the latest release of MySQL Installer, please visit MySQL Downloads. MySQL odae-gul.tistory.com  Download | DBeaver CommunityDownload DBeaver Community 24.3.2 Released on January 5th 2024 (Milestones). It..
[MySQL] 계정 및 권한 생성
·
MySQL
[MySQL] MySQL 설치MySQL :: Download MySQL Installer (Archived Versions)Please note that these are old versions. New releases will have recent bug fixes and features! To download the latest release of MySQL Installer, please visit MySQL Downloads. MySQL open source softwaredae-gul.tistory.com이전 MySQL 설치 게시글MySQL  커맨드 창을 열어준다 (cmd에서 mysql -u root -p로 접속해도 된다) 설정한 비밀번호를 입력하고  계정을 생성하기 위해 mysql로 접속 sh..
[MySQL] MySQL 설치
·
MySQL
MySQL :: Download MySQL Installer (Archived Versions)Please note that these are old versions. New releases will have recent bug fixes and features! To download the latest release of MySQL Installer, please visit MySQL Downloads. MySQL open source software is provided under the GPL License.downloads.mysql.comMySQL 설치 사이트버전과 OS를 설정하고 mysql-installer-community를 다운로드한다Custom을 선택 후 다음화면으로MySQL Server..
[Spring Boot] intelliJ로 Spring Boot 프로젝트 생성
·
Spring
스프링 부트(Spring Boot)스프링은 기존 기술의 복잡성을 크게 줄인 프레임워크지만 스프링을 사용하기 위해서는 여러 가지의 설정해주어야 한다스프링 부트는 스프링 기반 어플리케이션의 설정을 간편하게 처리해주는 프레임워크이다프로젝트 생성intelliJ로 Spring Boot 프로젝트를 생성하고 실행해보자빌드 타입은 Gradle로 설정했다Spring Web, Spring Web Services 두개의 의존성을 체크하고 프로젝트를 생성한다프로젝트가 생성된 모습Spring Boot는 @SpringBootApplication 어노테이션이 있는 클래스를 메인으로 실행한다바로 구동 되고 http://localhost:8080/으로 접속하면정상적으로 접속이 가능하다Error Page라고 나와있지만 정상적으로 작동된..
[MySQL] 특정 문자포함 조회 / LIKE( ), REGEXP( )
·
MySQL
LIKE LIKE는 연산자가 특정 문자가 포함된 데이터를 조회할때 사용한다. SELECT * FROM table WHERE column LIKE '특정 문자열%'; 특정 문자로 시작하는 데이터 검색 WHERE column LIKE '%특정 문자열%'; 특정 문자를 포함하는 데이터 검색 WHERE column LIKE '%특정 문자열'; 특정 문자로 끝나는 데이터 검색 예제) 동물 정보 테이블에서 이름에 el이 들어간 동물을 SQL로 조회하시오 ID TYPE NAME 1 Dog Jack 2 Cat Ella 3 Cat Mitty 4 Dog Shelly SELECT * FROM table WHERE NAME LIKE '%el%'; ID TYPE NAME 1 Cat Ella 4 Dog Shelly REGXP 복..