전체 글

전체 글

    [SQL 배우기] Section 2. SQL Statement Fundamentals

    The Complete SQL Bootcamp for the Manipulation and Analysis of Data | Udemy SELECT: most common statement used to retrieve information from a table SELECT column_name FROM table_name using * instead of the column name retrieves all the columns separate column names by a comma for multiple columns using capital letters for SQL keywords helps with visualization SELECT DISTINCT: used to return dist..

    [SQL 배우기] Section 1. Course Introduction

    The Complete SQL Bootcamp for the Manipulation and Analysis of Data | Udemy Database: systems that allow users to store and organize large amounts of data made up of tables that consist of columns and rows SQL(Structured Query Language): programming language used to communicate with the database pgAdmin: a Query Tool can be used to perform queries on the database

    [Kubernetes 배우기] Section 9. Kubernetes on Cloud

    [Kubernetes 배우기] Section 9. Kubernetes on Cloud

    Kubernetes for the Absolute Beginners - Hands-on | Udemy The hosted cloud solution allows for the maintenance of VMs, which makes it easy to scale and manage. Microsoft Azure Amazon AWS Google Cloud Google Kubernetes Engine (GKE) The cluster can be created easily by configuring it in the Google Cloud console The load balancer is configured automatically by using Google’s load balancer. Amazon El..

    [Kubernetes 배우기] Section 8. Microservices Architecture

    Kubernetes for the Absolute Beginners - Hands-on | Udemy Each stack of the applications can be separated into different containers to be individual microservices. docker run --links: connects the docker containers by name Service is created to connect between pods for microservices. (Use NodePort and ClusterIP) service is not needed for ports that do not require exposed port