DEV Community

Cover image for Understanding Databases (Relational)
Muhammad
Muhammad

Posted on

Understanding Databases (Relational)

In life, one of the simplest questions are by far the hardest to understand and perhaps define as well but they hold the universal truth, one has always been seeking. Let's talk a little about databases. The word data would mean, a statistical collection of references in a storage where they can be further analyzed and deduced in a resulted manner. When data is analyzed, it becomes information that has value to it.

So, when we talk about a database, in general we will be speaking of the following;

  • A Database also known as a Schema
  • Tables
  • Rows

Now this is an excel sheet prepared using Google Docs.

The name of my file myfirstdb is called a Database or a Schema. The sheet is known as users which we call a table. The more sheets, the more the tables. The A,B,C... are known as columns which are horizontal, and the 1,2,3... are known as rows which are vertical.

Now lets see, a visual representation of the same excel sheet in a database visualizer.

Now lets talk about some terms and what they mean, these features are like helpes that facilitate us in designing and storing entries in the database;

  • Primary Key
  • NN or Not Null or Null
  • Auto-increment or AI

Primary Key
It is a feature of a relational database, that sets to a column making sure that whatever value it contains is always unique. If no value is ever tried to insert into it, it will not allow the entry to be made.

NN or Not Null or Null
Simple, it has to have a value or do not allow any entry to enter into it.

Auto-increment or AI
Now you really dont want to keep calculations of the number of rows inserted and what row numbers are to be stored and improved, so this one helps in it, it automatically keeps a record of previous entry counts and adds one to the next where necessary.

Now there are four basic operations that can be done on any relational database, which are;

  • INSERT or CREATE - Inserts Data into a row in the Table
  • SELECT or READ - Brings back Data form the Table
  • UPDATE - Updates a Row in the Table
  • DELETE or REMOVE - Deletes a Row

There is a short form to it known as CRUD (CREATE, READ, UPDATE, DELETE), i wanna create my own, lets say SIDU (SELECT, INSERT, DELETE, UPDATE)

Now lets create a database, if you have been following the tutorial so far, you should have a basic webserver running on your computer and a database server, with phpMyAdmin or MySQL Workbench as a Data Administrator tool installed. Make sure your webserver is running.

Open your browser and type: http://localhost/ or http://127.0.0.1/, you should be displayed by a WampServer page in Windows case, in other cases just follow to the phpMyAdmin page. Click on phpMyAdmin

You should now come up with a login screen.
Username: root
Password:

The password is blank, none and empty.

Click on Go.

Dont worry, about all the tabs and things. Click on Databases on the upper left corner.

Now lets create a database. Type in myfirstdb and just click on Create.

The structure tab is where we define, what columns we will be using.

Set number of columns to 3 and type in users, this is the table we are creating. Click on Go

Now it will create, 3 empty fields where we will input the column names. See picture for reference. The primary is the primary key and AI is the autoincrement. Click on Save.

Now, the structure is created, if you go through the text, i am sure it will now start making sense. Click on Insert Tab

Lets enter some rows, and also uncheck ignore because we are entering 2 rows. Click on Go. Now the query is run and two rows are inserted into it. Click on Browse

Now, you can see the similarity in between the excel sheet and the MySQL Database we have created.

Noob Index

Top comments (0)