Young-han Kim's Practical Database - Basic Course
Learn the fundamentals of SQL and databases essential for practical work. Not only developers, but also planners and data analysts can learn SQL in depth.
4,667 learners
Level Basic
Course period Unlimited
News
4 articles
Hello. I'm Young-han Kim.
We are introducing the Younghan Kim's Backend Master Pass, which many of you have requested for a long time, for a limited period.
Link: https://inf.run/LR9Sp
A 7-year journey, and its completion
It has already been 7 years since I started my first lecture. During that time, I have created a total of 26 lectures and received overwhelming support with a cumulative total of 590,000 students.
When I first started teaching, I made a promise to myself. Thinking of the countless new, junior, and senior developers I met in the field, I vowed to create "real-world development courses that truly enable growth." My goal was to deliver every practical skill needed to grow from a newcomer to a junior, and from a junior to a senior—and it has finally been completed after 7 years.
Pass Product Composition — Integration of 4 Core Roadmaps
This Master Pass is a 'lifelong roadmap' that accompanies a developer's entire career cycle, from the basics of their junior days to the performance optimization challenges they must face as a senior.
Young-han Kim's Practical Java Roadmap
Young-han Kim's Spring Complete Mastery Roadmap
Young-han Kim's Roadmap for Mastering Spring Boot and JPA in Practice
Young-han Kim's Practical Database Roadmap
Includes new lecture to be released in July
In addition to this, the 「Young-han Kim's Practical Database - Performance Optimization」 course, scheduled for release in July, will be provided. (Expected price: 154,000 KRW)
This is the course I am putting the most effort into creating. This is because 80% of practical system failures stem from database performance issues. As a service grows and begins to handle large-scale traffic, no matter how cleanly you write your backend application code, the final bottleneck will eventually explode at the database level.
After mastering this course, you will possess the 'true senior's' perspective to accurately pinpoint bottlenecks without panicking, even in the face of failures or slow queries.
A reward for existing students
I have prepared some benefits for those who have trusted and followed me for a long time.
- Existing Course Purchasers: A higher discount rate will be applied to the remaining courses based on the number of courses (amount) already owned.
- Purchasers of all courses (Super Fans): Master Pass provided as a gift (free)
As a special thank you to my true fans who have trusted and followed all of my lectures so far, I am giving the 'Pass Product' and the 'Practical Database Performance Optimization' lecture, which will be released in July, as a gift. (Please make sure to select the 0 won purchase for the Pass Product!)
The AI Era: Why Fundamentals Matter
An era where AI writes code for us. Has the gap between skilled and unskilled developers narrowed? In the field, the opposite result is actually occurring.
AI is not a tool to replace a developer's ability, but a tool to amplify it.
Skilled developers can ask AI the right questions and determine whether the code generated by AI is high-quality or dangerous. They can quickly identify if the design is flawed, if there are hidden performance issues, or if it could lead to failures in a production environment.
Conversely, if you lack the fundamentals, it is difficult to verify the results generated by AI. Even if it appears to work on the surface, the design might be flawed, database performance issues could be hidden, or problems could erupt in the production environment.
AI technology will continue to change rapidly. However, there are things that do not change.
The basic principles of object-oriented programming
The eye to distinguish between good code and bad code
The operating principles of HTTP and the web
Transactions and Data Access Technologies
Database design and performance optimization
These fundamentals become even more important in the AI era. This is because you need to know to ask questions, you need to know to verify, and you need to know to make improvements.
This Backend Master Pass contains those very unchanging essentials.
Continuous lecture renewals, at no additional cost
Going forward, existing lectures will also be continuously renewed. Depending on the need, we will proceed with full video renewals, partial video renewals, manual version updates, and more.
Those who purchase the Master Pass now will receive free updates without any additional cost, even if the price of the renewed lectures increases later. This is my minimum courtesy and promise to those who have trusted and chosen me. I plan to begin full-scale renewal work after the release of the Practical Database Performance Optimization lecture.
Lastly
This pass is not simply a product for selling knowledge. It is the culmination of seven years of effort, created to pass on to you everything I have learned, experienced, and fiercely contemplated in the field for over a decade.
Until the day you grow from a newcomer to a junior, from a junior to a senior, and finally become a developer whom your colleagues sincerely want to work with—I will be by your side as a reliable guide.
Thank you.
Hello everyone
The Database Design Part 1 course has finally opened.To celebrate the opening, I'm offering 30% off all my courses 🙂
Title: Kim Young-han's Practical Database Design Part 1 – Complete Mastery of Modern Data Modeling
Number of lectures: 83
Lecture Duration: 16 hours 11 minutes
Lecture PDF materials: approximately 400 pages
Link: https://inf.run/SEdxb
[Course Introduction]
Databases are the foundation of all applications.
However, if not designed properly, projects quickly hit their limits, and maintenance becomes hell.This course doesn't simply teach you how to create tables, but systematically shows you modern database design methods that work in real-world practice. And I've packed this course with the results of my extensive hands-on experience and long deliberation.
[Key Lecture Points]
Conceptual → Logical → Physical Modeling
Master DB design completely with a 3-step approach.Design know-how you can use immediately in practice
We don't just stay in theory, but use a shopping mall project as an example.Avoiding the Pitfalls of Poor Design
Through hands-on practice, you'll understand why ERDs are important, why normalization is necessary, and when denormalization should be applied.The Essence of Key and Relationship Design
We cover natural keys vs surrogate keys, one-to-one, one-to-many, and many-to-many relationships, and identifying vs non-identifying relationships in depth.Reflecting the Latest DB Design Trends
We don't stay stuck in textbooks from decades ago, but present modern data modeling methodologies.[What You'll Learn]
Requirements Analysis and Core Entity Extraction
ERD Creation and Terminology Dictionary Management
Normalization (1NF ~ BCNF) and Its Limitations
Index and Performance-Considered Physical Modeling
Shopping Mall Project Complete DB Design Practice
[Target Audience]
Developer: Someone who wants to design a proper database before writing code
Planner/Analyst: Those who want to fundamentally understand data flow and structure
Job seekers: Those who want to demonstrate differentiated DB design capabilities in interviews
Junior Developer: Those who want to learn design principles that can be applied immediately in practice
Senior Developer/Lead: Those who want to improve the quality of their team's database design
[Complete Course Curriculum]
1. Course Introduction and Class Materials
* 1-A. Windows - MySQL Installation Guide
* 1-B. macOS - Installation Guide
2. The Importance of Design
* The First Step in Database Design
* The Disaster Caused by Poor Design
* 3 Stages of Design - Conceptual, Logical, Physical
* Summary
3. Conceptual Modeling
* Requirements analysis and identification of key elements
* What is an entity?
* Entity Classification 1
* Entity Classification 2
* Properties and Identifiers
* Cardinality and Participation
* Complete the ERD
* Related Entity - Resolving Many-to-Many Relationships
* Glossary
* Summary
4. Conceptual Modeling - Practice
* Practical Requirements Analysis
* Practical Conceptual Modeling - Getting Started
* Practical Conceptual Modeling - ERD Creation
* Practical Conceptual Modeling - Glossary Creation
* Summary
5. Logical Modeling 1 - Keys
* Various types of keys
* Natural Key vs Surrogate Key1 - Natural Key
* Natural Key vs Surrogate Key2 - Surrogate Key
* Natural Key vs Surrogate Key3 - Performance Trade-offs
* Natural Key vs Surrogate Key4 - Modern Design
* Composite key design
* Many-to-Many Relationships and Composite Keys
* Summary
6. Logical Modeling 2 - Participation and One-to-Many Relationships
* Logical Modeling - Relationships
* Participation
* One-to-Many (1:N) Many-to-One (N:1) Relationships - Foreign Key Position 1
* One-to-Many (1:N) Many-to-One (N:1) Relationships - Foreign Key Position 2
* One-to-Many (1:N) Many-to-One (N:1) Relationships - Joins and Data Inflation
* Summary
7. Logical Modeling 3 - One-to-One, Many-to-Many Relationships
* One-to-one (1:1) relationship - Start
* One-to-one (1:1) relationship - Foreign key location
* One-to-One (1:1) Relationship - [Practice] Flexibility of Relationship Extension
* One-to-one (1:1) relationship - FK in the main table
* Many-to-Many (M:N) Relationship - Limitations of the Relational Model
* Many-to-Many (M:N) Relationship - Junction Table
* Many-to-Many (M:N) Relationship - Attributes
* Many-to-Many (M:N) Relationship - Conceptual and Logical Modeling
* Summary
8. Logical Modeling 4 - Identifying Relationships, Non-Identifying Relationships
* Identifying Relationship vs Non-Identifying Relationship - Concepts
* Identifying Relationship vs Non-Identifying Relationship - One-to-Many (1:N)
* Problems with Identifying Relationships
* Identifying Relationship vs Non-Identifying Relationship - SQL Queries, Performance
* Identifying Relationship vs Non-Identifying Relationship - One-to-One (1:1)
* Identifying Relationship vs Non-Identifying Relationship - Many-to-Many (M:N) 1
* Identifying Relationship vs Non-Identifying Relationship - Many-to-Many (M:N) 2
* Identifying Relationships vs Non-Identifying Relationships - Modern Design Trends
* Summary
9. Logical Modeling - Practice
* Practical Logical Modeling - Getting Started
* Practical Logical Modeling - ERD Creation
10. Normalization
* Normalization - Start
* First Normal Form
* Second Normal Form
* Third Normal Form
* BCNF Normal Form
* Practice and Normalization
* Summary
11. Physical Modeling
* Physical Modeling Overview
* Table and Column Conversion Rules 1 - Basic Rules
* Table and Column Conversion Rules 2 - Abbreviations and Singular/Plural
* Data Type 1 - Character, Number, PK Type
* Data Types 2 - Date and Time Types
* Denormalization
* Table Definition Document
* Summary
12. Physical Modeling - Practice
* Physical Modeling - Practice Start
* Index Design - Practice
* Denormalization - Practice
* Shopping Mall Table Definition Document
* Creating Shopping Mall DDL and DB
* Physical Model - Automatic ERD Generation
* Shopping mall feature check 1
* Shopping mall feature check 2
* Summary
Thank you.
Hello everyone
The Database Design Part 1 course is finally ready to open.The Design Part 1 to be released this time is scheduled to launch between September 16th and September 19th.
Database Roadmap - Course Release Schedule
Design Part 1 – Complete Mastery of Modern Data Modeling - Expected release in mid-September
Design Part 2 - Mastering Practical Design Patterns and Application Techniques - Scheduled for release at the end of 2025
Performance Optimization and Advanced Features - Scheduled for release in early 2026
Title: Kim Young-han's Practical Database Design Part 1 – Complete Mastery of Modern Data Modeling
Number of lectures: 83
Lecture Duration: 16 hours 11 minutes
Lecture PDF materials: approximately 400 pages
Course Introduction
Databases are the foundation of all applications.
However, if not designed properly, projects quickly hit their limits, and maintenance becomes hell.This course doesn't simply teach you how to create tables, but systematically shows you modern design methods that work in real-world practice. And I've packed this course with the results of my extensive hands-on experience and long deliberation.
Key Points of the Lecture
* Conceptual → Logical → Physical Modeling
Completely master DB design with a 3-step approach.
* Design know-how for immediate practical use
We don't just stay in theory, but use a shopping mall project as an example.
* Avoiding the Pitfalls of Poor Design
You'll realize through hands-on practice why ERD is important, why normalization is necessary, and when denormalization should be applied.
* The Essence of Key and Relationship Design
Natural Key vs Surrogate Key, One-to-One, One-to-Many, Many-to-Many relationships, and Identifying vs Non-Identifying relationships are covered in depth.
* Reflecting the Latest DB Design Trends
It presents modern data modeling methodologies without being stuck in textbooks from decades ago.
What You'll Learn
Requirements Analysis and Core Entity Derivation
ERD Creation and Terminology Dictionary Management
Normalization (1NF ~ BCNF) and Its Limitations
Index and Performance-Considered Physical Modeling
Shopping Mall Project Complete DB Design Practice
Target Audience
Developer: Someone who wants to design a proper database before writing code
Planner/Analyst: Those who want to fundamentally understand data flow and structure
Job seekers: Those who want to demonstrate differentiated DB design capabilities in interviews
Junior Developer: Those who want to learn design principles that can be applied immediately in practice
Senior Developer/Lead: Those who want to improve the quality of their team's database design
Complete Course Curriculum
1. Course Introduction and Class Materials
* 1-A. Windows - MySQL Installation Guide
* 1-B. macOS - Installation Guide
2. The Importance of Design
* First Steps in Database Design
* The disaster caused by poor design
* 3 Stages of Design - Conceptual, Logical, Physical
* Summary
3. Conceptual Modeling
* Requirements analysis and identification of key elements
* What is an entity?
* Entity Classification 1
* Entity Classification2
* Properties and Identifiers
* Cardinality and Participation
* Complete the ERD
* Related Entity - Resolving Many-to-Many Relationships
* Glossary
* Summary
4. Conceptual Modeling - Practice
* Practical Requirements Analysis
* Practical Conceptual Modeling - Getting Started
* Practical Conceptual Modeling - ERD Creation
* Practical Conceptual Modeling - Glossary Creation
* Summary
5. Logical Modeling 1 - Keys
* Various types of keys
* Natural Key vs Surrogate Key1 - Natural Key
* Natural Key vs Surrogate Key2 - Surrogate Key
* Natural Key vs Surrogate Key3 - Performance Trade-offs
* Natural Key vs Surrogate Key4 - Modern Design
* Composite key design
* Many-to-Many Relationships and Composite Keys
* Summary
6. Logical Modeling 2 - Participation and One-to-Many Relationships
* Logical Modeling - Relationships
* Participation
* One-to-Many (1:N) Many-to-One (N:1) Relationships - Foreign Key Position 1
* One-to-Many (1:N) Many-to-One (N:1) Relationships - Foreign Key Position 2
* One-to-Many (1:N) Many-to-One (N:1) Relationships - Joins and Data Multiplication
* Summary
7. Logical Modeling 3 - One-to-One, Many-to-Many Relationships
* One-to-one (1:1) relationship - Start
* One-to-one (1:1) relationship - Foreign key location
* One-to-One (1:1) Relationship - [Practice] Flexibility of Relationship Extension
* One-to-one (1:1) relationship - FK in the main table
* Many-to-Many (M:N) Relationship - Limitations of the Relational Model
* Many-to-Many (M:N) Relationship - Junction Table
* Many-to-Many (M:N) Relationship - Attributes
* Many-to-Many (M:N) Relationship - Conceptual and Logical Modeling
* Summary
8. Logical Modeling 4 - Identifying Relationships, Non-Identifying Relationships
* Identifying Relationship vs Non-Identifying Relationship - Concepts
* Identifying Relationship vs Non-Identifying Relationship - One-to-Many (1:N)
* Problems with Identifying Relationships
* Identifying Relationship vs Non-Identifying Relationship - SQL Queries, Performance
* Identifying Relationship vs Non-Identifying Relationship - One-to-One (1:1)
* Identifying Relationship vs Non-Identifying Relationship - Many-to-Many (M:N) 1
* Identifying Relationship vs Non-Identifying Relationship - Many-to-Many (M:N) 2
* Identifying Relationships vs Non-Identifying Relationships - Modern Design Trends
* Summary
9. Logical Modeling - Practice
* Practical Logical Modeling - Getting Started
* Practical Logical Modeling - ERD Creation
10. Normalization
* Normalization - Start
* First Normal Form
* Second Normal Form
* Third Normal Form
* BCNF Normal Form
* Practice and Normalization
* Summary
11. Physical Modeling
* Physical Modeling Overview
* Table and Column Conversion Rules 1 - Basic Rules
* Table and Column Conversion Rules 2 - Abbreviations and Singular/Plural
* Data Type 1 - Character, Number, PK Type
* Data Types 2 - Date and Time Types
* Denormalization
* Table Definition Document
* Summary
12. Physical Modeling - Practice
* Physical Modeling - Practice Start
* Index Design - Practice
* Denormalization - Practice
* Shopping Mall Table Definition Document
* Creating Shopping Mall DDL and Database
* Physical Model - Automatic ERD Generation
* Shopping mall feature check 1
* Shopping mall feature check 2
* Summary
Thank you.
Hello, everyone
The two introductory database fundamentals lectures have finally been launched: Now available.
We've decided to offer an introductory database course for free so that even beginners can learn databases without any pressure.
Kim Young-han's Practical Database Roadmap
Practical Database Introduction by Kim Young-han - Step-by-Step from SQL (Now Open)
Kim Young-han's Practical Database - Basic Course (Now Open)
Kim Young-han's Practical Database - Design Edition (Scheduled for Second Half of 2025)
Kim Young-han's Practical Database - Performance Optimization and Advanced Features (Scheduled for Second Half of 2025)
Target Audience
For your reference, this lecture has been designed to be accessible not only to developers but also to planners and data analysts.
Developer: Juniors, non-majors, and job seekers who want to build a solid foundation in database basics
Planner/Marketer: For those who need data-driven decision making
Data Analyst: Beginner who wants to build SQL skills
[Introducing the Roadmap from a Developer's Perspective]
If you're a developer, I recommend following the entire roadmap.
Many developers will relate to this: truly outstanding applications are ultimately built on well-designed databases. This is because there are problems that simply cannot be solved by application code alone—they lie within the database layer. This roadmap will fill in that other half of essential expertise, elevating you to the next level as a developer.
Beginner Course: First, build a foundation in databases and SQL basics through the 'Beginner Course'.
Basic Course: The basic course covers essential database fundamentals that every junior developer must know.
You'll gain the ability to solve any complex business requirement using SQL through joins, subqueries, unions, and case statements.
Build a solid foundation in essential SQL performance optimization for real-world applications by thoroughly understanding how indexes work.
You can develop stable applications that prevent data corruption by gaining a deep understanding of transactions and data integrity.
Design Course: The design course will elevate you to a higher level of developer. You'll learn how good database design determines an application's maintainability and scalability, and develop the ability to systematically model complex real-world requirements.
Performance Optimization and Advanced Features: Performance Optimization and Advanced Features is the final gateway to becoming a senior developer capable of handling large-scale traffic. You will master advanced techniques to identify database performance bottlenecks that no one else can solve and push your service to its limits.
By mastering this roadmap, you'll grow into a truly skilled developer who goes beyond simply implementing features—gaining deep understanding and optimization skills for both applications and databases, enabling you to find solutions to any challenging situation.
[Introduction to Roadmap from a Planning and Data Analyst Perspective]
If you're a planner or data analyst, I recommend taking the introductory course and continuing through the basic course.
Beginner Course: By learning the basics of SQL through the beginner course, you'll gain the speed and independence to instantly get the answers you need, no longer having to request data and wait.
Basic Course: In the Basic Course, we take one step further.
You'll enhance the depth of your analysis by using advanced SQL techniques like joins, subqueries, unions, and CASE statements to combine scattered data from multiple sources and reprocess it according to your own criteria.
With just these two courses, you'll become a key talent capable of improving services based on data, persuading organizations, and communicating effectively with development teams.
If you want to directly lead data-driven products, taking the advanced 'Design' course to deepen your understanding of data structures could be a great choice.
This roadmap's introductory and foundational sections will completely transform the way planners and analysts work with data.
Beginner Course - Section Contents
1. Course Introduction and Study Materials
2. Introduction to Databases
3. Starting the Database
4. SQL - Data Management
5. SQL - Retrieval and Sorting
6. SQL - Data Processing
7. SQL - Aggregation and Grouping
Beginner Course - Section Contents
1. Course Introduction and Study Materials
2. Join 1 - Inner Join
3. Join 2 - Outer Joins and Other Joins
4. Subquery
5. UNION
6. CASE Statement
7. 뷰(View)
8. Index1
9. Index 2
10. Data Integrity
11. Transaction
12. Stored Procedures, Functions, and Triggers
I've gathered your questions about roadmap progress and will answer them.
1. Basic Order of Progressing Through the Database Roadmap
- The basic order is Java -> Database -> Spring -> Spring Boot and JPA application.
2. Recommended Order for Progressing Through the Database Roadmap
The most effective learning sequence is to study the introductory and basic database courses right before Spring DB1 in the Spring roadmap.
Therefore, you will learn in the following order.
- ...
- Spring MVC2
- Database Fundamentals
- Database Fundamentals
- Spring DB Part 1
- Spring DB Part 2
- ...
We recommend completing at least the Database Fundamentals course before proceeding with the Spring Boot and JPA application roadmap.
I'll reorganize and let you know again about the database design section, performance optimization, and advanced features once they're released.
3. Will the course be based on MySQL or Oracle?
The hands-on exercises focus on MySQL, but the lecture content emphasizes universal knowledge that covers not only MySQL but relational database management systems (RDBMS) in general. Therefore, the goal is to achieve a broad understanding that isn't limited to any specific database.
To use an analogy, in this course we'll learn how to drive a car called MySQL. But rather than simply learning how to operate one specific car model, we'll focus on mastering the fundamental driving principles—like accelerators, brakes, and steering wheels—that apply to any car (RDBMS). These core concepts of RDBMS will be beneficial when working with other RDBMS systems as well.
Thank you.

