Coding Language

MySQL Delete

More Coding HTML WordPress Tutorials DELETE FROM The DELETE FROM statement is used to delete one or more rows from an existing table in a… Read MoreMySQL Delete

MySQL Update

Update statement The UPDATE statement lets you edit an existing row in a table. Format UPDATE table_name SET column_name = “new value” WHERE row_name =… Read MoreMySQL Update

MySQL Alter

Adding a new column to a table The ALTER TABLE helps you add a column with specified data type to an existing table. ALTER TABLE… Read MoreMySQL Alter

MySQL Select

Fetching Data The SELECT statement is used to fetch data from a database.It indicates that the statement is a query.The SELECT is used every time… Read MoreMySQL Select

MySQL Insert

INSERT The INSERT statement inserts a new row into the table. INSERT STATEMENT INSERT INTO jamfinity (id, name, age) VALUES (1, ‘Jamil Jahangir’, 22); We… Read MoreMySQL Insert

MySQL Create

Statement/ Command We communicate with databases through Statements. A Statement are texts that are perceived as a valid command. It always ends with a semicolon… Read MoreMySQL Create

MySQL Introduction

Introduction What is MySQL? MySQL is an open-source relational database management system. Its name is a combination of “My”, the name of co-founder Michael Widenius’s… Read MoreMySQL Introduction

Basic MySQL

Basic MySQL is a short Tutorial Course Designed for Students who want to learn about MySQL codes and their uses in a short period of time