MySQL

Advanced SELECT statements

Mar 14,16

We can use many different clauses to change the behaviour of the SELECT statement. In this chapter we will describe …

Read More

Query a database

Mar 14,16

We’ve learned that a table consists of rows and columns. Often, you want to see a subset rows, a subset …

Read More

Modify a table

Mar 14,16

The ALTER TABLE statement is used to change the existing table structure. It can be used to add or remove …

Read More

Insert new records

Mar 14,16

To insert new records in an MySQL table, the INSERT INTO command is used. INSERT INTO allows you to insert …

Read More

Data types

Mar 14,16

A data type defines what kind of value a column in a database table can contain. This parameter tells MySQL …

Read More

Create a table

Mar 14,16

Tables are subcontainers within a database that store the actual data. The database is created without any tables. To create …

Read More
Geek University 2022