Posts

REGIONAL CONFERENCE1_.RAITE 2025

Image
“RAITE 2025” Reflection Report   Details of the event/activity  The Regional Assembly on Information Technology Education RAITE 2025 took place on October 17, 2025 at the Nueva Ecija University of Science and Technology Sumacab Campus in Cabanatuan City Nueva Ecija. The event was organized by the Philippine Society of Information Technology Educators Central Luzon Region and carried the theme “I.T. Beyond Tomorrow Shaping the Digital Frontier.” Reflections on the Regional Conference give rise to (learnings)  Attending RAITE 2025 helped me better understand how fast technology is evolving especially in the area of artificial intelligence. One of the most impactful discussions for me was about digital footprints because it made me realize how much personal data we leave online without noticing. This made me more aware of the importance of being careful and responsible in using digital platforms. I was also surprised to learn that the Philippines is considered one ...

SQL: Unraveling the Power of Structured Query Language

Image
Introduction: In the world of data management, there's a behind-the-scenes hero called SQL (Structured Query Language). Let's break down what SQL is and why it's so crucial in handling data effectively. I. What is SQL? SQL, or "ess-que-el," is a language designed to manage and organize data in databases. Think of it as the command center for handling information efficiently. Originally developed in the 1970s, SQL has become a fundamental part of how we interact with and make sense of databases. II. The ABCs of SQL : Data Definition Language (DDL): What it does: Shapes the database structure. Commands: Create, modify, or delete things like tables and indexes. Data Manipulation Language (DML): What it does: Lets us interact with the data. Commands: Add new data, update existing records, or fetch information. Data Control Language (DCL): What it does: Manages who can access what. Commands: Sets permissions and controls access to data. III. Why SQL Matters: Work...

Demystifying Database Language Terminologies: DDL, DML, and Embedded DML

Image
  Introduction Databases are an essential part of modern information systems. They can store, handle, and retrieve massive volumes of data, making them indispensable in enterprises, organizations, and even personal applications. It is critical to grasp the languages used to connect with databases in order to operate successfully with them. We'll look at and define three key database language terminology in this blog post: Data Definition Language (DDL), Interactive Data Manipulation Language (DML), and Embedded Data Manipulation Languages (EDML). A. Data Definition Language (DDL) Data Definition Language (DDL) is a subset of SQL (Structured Query Language) used for defining and managing the structure of a database. DDL is primarily responsible for defining the database schema, which includes tables, indexes, constraints, and other database objects. Key DDL statements include: CREATE: This statement is used to create new database objects, such as tables, indexes, and views. ALTER:...

A Comprehensive Guide to Understanding DBMS: Functions, Advantages, and Disadvantages

Image
  Introduction In today's data-driven world, effective management of information is crucial for businesses, organizations, and individuals alike. This is where Database Management Systems (DBMS) play a pivotal role. DBMS is software designed to store, retrieve, and manage data efficiently. In this blog post, we will explore the functions, advantages, and disadvantages of DBMS, helping you understand why it is a cornerstone of modern information management. A. Functions of DBMS Database Management Systems serve several essential functions that streamline data operations and enhance overall efficiency. Let's delve into some of the primary functions: 1. Data Storage: DBMS provides a structured environment for storing vast amounts of data. Data is organized into tables, making it easier to manage and retrieve when needed. 2. Data Retrieval: DBMS allows users to query the database using SQL (Structured Query Language), enabling swift and precise data retrieval. This is particularl...