Let’s Discover Microsoft Access

Microsoft Access is a Database Management System (DBMS) from Microsoft that combines the relational Microsoft Jet Database Engine with a graphical user interface and software-development tools. It is a member of the Microsoft Office suite of applications, included in the professional and higher editions. MS Access Objects MS Access uses “objects” to help the user…

Install Python Packages on Visual Studio Code

Visual Studio Code is a free programming software. It is multiple platforms software that you can install it on Windows, Linux and Mac OS. As a Python programmer, working on Visual Studio Code saves much time. However, Visual Studio Code only provides basic Python packages that are not enough for advanced programming. This screenshot shows…

Some of The Most Important SQL Commands

SELECT – extracts data from a database UPDATE – updates data in a database DELETE – deletes data from a database INSERT INTO – inserts new data into a database CREATE DATABASE – creates a new database ALTER DATABASE – modifies a database CREATE TABLE – creates a new table ALTER TABLE – modifies a table DROP TABLE – deletes a table CREATE INDEX –…