top of page

Choose SQL FUNDAMENTAL Course in Malaysia

Completely project-based SQL Fundamental Course.

Course Price

RM 4,500

RM 2,500
(excluding 8% SST)

Duration: 5 days/40 hours

Speak with our Course Advisor

Course Preview

-

+

This course teaches data and analytics professionals the fundamentals of SQL. Participants will learn how to use SQL to construct and change tables, access and analyze data, and join tables. We designed this course for those who have little to no SQL knowledge and work on analytics projects on a daily basis. Lessons include both lectures and hands-on activities, with an emphasis on developing practical skills.

We provide both in-person and remote training with our Live Online technology. We are able to combine these skills so that we can train your complete team, even if they are not all in the same location.

SQL Course Malaysia is known for its placement in different firms as Database Engineer and Nexperts Academy provides you the best of training that one could get in whole Malaysia.

-

+

No prior programming language required. Beginners are welcome.

-

+

Analysts or those who work with data in similar analytical roles

-

+

  • 40 hours training

  • Hands-on training

  • Fundamentals of SQL 

  • Certified and Experienced Trainer

  • High Google Review

-

+

  • Hands-on training

  • 2 Projects

  • Training with experienced Instructor

  • Materials and software to practice.

  • Lifetime Access of recorded sessions

-

+

  • Ability to read SQL

  • Ability to write queries

  • SQL comes in a table format so you will learn to work with tables and fields

  • Ability to merge a variety of tables in a query

  • Will be able to run data for analysis purposes

-

+

  • Lifetime Access of recorded sessions

  • One on One Training Support

  • Pre-recorded tutorial on basics and fundamentals

-

+

  • Course Fee: RM 2500 (Limited Time Offer)

  • Duration: 5 Days / 40 Hours

-

+

The inquiry process consists of three simple steps.

STEP 1 Submit Inquiry- Tell us a bit about yourself and the questions you want to enquire

STEP 2 Reviewing–Your questions will be processed and answered within a day

STEP 3 Response–Answers will typically be sent through email. However, you may tell us the option you prefer us to contact you in

-

+

  • Physical Classroom Training (Malaysia)

  • On-site Company Training (Malaysia)

  • Online Training via Microsoft Team (Malaysia and International)

-

+

Module 1: Getting Started with MySQL

Learning objectives

This module introduces you to the world of MySQL, what it is, and about its benefits. Your hands-on introduction to MySQL will start with installing MySQL workbench and then creating a MySQL database that will be used throughout the course. You will then progress to understanding various data types that can be used for storing our data in MySQL. Then you will learn how to set up schema tables by using the CREATE data definition language statement. Learn the distinction between Primary Key and Foreign Key, use Primary Key to the model unique ID of your tables. Next, move to DML queries and learn about INSERT, UPDATE, and DELETE for manipulating data in the DB. Also, learn about data migration by understanding the DROP, ALTER commands. Lastly, learn about CHECK, NOT NULL, and UNIQUE constraints that could be used to add validation to the tables and columns

Topics

  • MySQL and its Use Cases

  • Setup MySQL database

  • Discuss data types that can be used

  • Leverage CREATE TABLE DDL for setting up a schema of tables

  • Using Primary Key and Foreign Key

  • Insert, Update and Delete for DML operations

  • Alter and Drop existing tables

  • Adding and examining Constraints on tables

Hands-on

  • Leverage CREATE Table DDL for setting up the schema of tables, after learning its basics

  • Insert, Update and Delete for DML operations, after learning about how to use Primary Key and Foreign Key constraints

Module 2: Deep Dive into SQL Statements

Learning objectives

This module helps you investigate the more detailed aspects of MySQL. First, you will learn to use SELECT to retrieve data by primary key and use SELECT DISTINCT for removing duplicates. You will then learn to filter retrieved data by using the WHERE statement and combine WHERE with multiple conditions. Next, you will learn about using COUNT for retrieving information about the cardinality of data set in the table and leveraging LIMIT for narrowing the resulting data set to first occurrences. You will then learn how to order returned data in ascending or descending order by using ORDER BY ASC or DESC. Finally, you will learn how to use subqueries with IN to specify more complex limits and leverage BETWEEN for two conditions.

Topics

  • Select and Select Distinct for removing duplicates

  • Leverage Where statement to narrow resulting data set

  • Count and Limit for diagnosing and controlling resulting data set

  • Specify ordering of retrieved data by using ORDER BY

  • Leverage sub-queries with IN and BETWEEN

 

Hands-on

  • Count and Limit for diagnosing and controlling resulting data set, after learning about Count and Limit for diagnosing and controlling resulting data set

  • Leverage sub-queries with IN and BETWEEN, after learning their basics

 

Module 3: Analytical SQL queries

Learning objectives

Start by learning the concepts of MIN, MAX, and AVG for getting statistics about data. You will then learn how to use the GROUP BY statement and use it in the context of aggregating data in a customized manner. Finally, you will learn to filter grouped data by using the HAVING clause with the GROUP BY statement.

 

Topics

  • Getting statistics about data by using MIN MAX and AVG

  • Leverage GROUP BY to aggregate data in a custom way + Conditional GROUP BY statements with HAVING clause

Hands-on

  • Learn how to get statistics about data by using MIN MAX and AVG, after learning the concepts

  • Create conditional GROUP BY statements with HAVING clause, post a conceptual analysis

Module 4: Joining Data from multiple data sets

Learning objectives

This module explains the various SQL statements that are used to join data multiple datasets such as CREATE, JOINs, and more. You will start with the CREATE data definition and reference the primary key from another table to create relationships. Next, you will use INNER JOIN to fetch data from two tables that have a relation. You will use it to only fetch data that is present in both data sets. Next, you will use LEFT and RIGHT join to fetch data from two tables where data is not present in one of those data sources. And finally, you will see the use of FULL OUTER JOIN for joining data when it is not present in both datasets and leverage UNION for finding data sets.

 

Topics

  • Creating tables using primary key references

  • INNER JOIN for full joins e LEFT and RIGHT joins for joining data

  • Full Outer Join and Union

 

Hands-on

  • Execute INNER JOIN for full joins

  • Implement Full Outer Join and Union real-time

 

Module 5: Advanced SQL language features

Learning objectives

Learn about advanced SQL features including mathematical functions such as ABS, MOD, FLOOR that are used to calculate data dynamically when retrieving it from tables. You will then learn how to work with text data and how to retrieve it and then move on to using Regular Expressions within SQL. Finally, you will earn how to solve complex SQL problems by using SELF JOIN and use it for multiple lookups on the same table.

 

Topics

  • Perform advanced calculations with mathematical functions

  • Operations on String and Text columns

  • Leverage Self-Join when needed to join the table with itself

Hands-on

  • Perform advanced calculations with mathematical functions once you're familiar with the concepts

  • Practical leveraging Self-Join when needed to join the table with itself

Module 6: Using MySQL with web applications

Learning objectives

In this module, you will learn how to use MySQL with different popularly used web applications. You will work with Nodejs (Express) application, Python (Django) application, and PHP (Laravel) application and learn how they interact with MySQL.

 

Topics

  • MySQL Application with Node js (Express)

  • MySQL Application with Python (Django)

  • MySQL Application with PHP (Laravel)

 

Module 7: Optimize Performance and Security of MySQL Queries

Learning objectives

This final module covers what it takes to optimize performance on your database and keep it secure. So, you will start by making your MySQL instance secure, create secure users, and enable encryption. You will learn to use EXPLAIN to understand queries, track performance problems, and learn how to alleviate them. You will understand how to create indexes on the most useful fields, learn how to pick the proper fields for indexing, and use indexing with queries. You will also learn how to use prepared statements both for performance and security reasons and use these prepared statements from code. Next, you will learn how to make your data safe with backup policies, using backup for recovery, and understanding which log is needed to restart the MySQL DB. Finally, you will understand the performance of complex and huge queries and learn how to decompose them into smaller ones.

 

Topics

  • Securing MySQL

  • Track Performance Problems with EXPLAIN

  • Use Indexing to improve the performance of search queries

  • Prepared Statements as a best MySQL query pattern

  • Performing Backups and using Logs

  • Decomposition of complex queries into simpler ones

FAQ

What is the pre-requisites to take this course ?

Basic analytics experience

Do I need to be from the IT field to learn?

No, not required. Interest in IT and having IT thinking would be sufficient to embark in this area of IT.

Which is the best SQL Training company in Malaysia?

Nexperts Academy is the best in Malaysia. Our google rating is evidence of our strength in this field.

Will I receive a certificate upon finishing this course?

Yes, you will get a personalized digital certificate downloadable as a PDF. You will need to complete over 85% of the curriculum lessons

WHY NEXPERTS ACADEMY

CERTIFIED-01.png

- CERTIFIED TRAINERS

RECORDING-01.png

- LIFETIME ACCESS TO
RECORDED SESSIONS

EXPERIENCE-01.png

- HIGHLY EXPERIENCED
WITH INTERVIEW PREPARATION

CALENDAR-01.png

- FLEXIBLE SCHEDULE

24 HRS-01.png

- 24/7 SUPPORT

ONE ON ONE-01.png

- ONE ON ONE ASSISTANCE

bottom of page