All posts by Tuna Peyo

LIMIT clause

Mar 14,16

Sometimes tables contain thousands of rows and if you run a SELECT statement to display all rows, you will impact …

Read More

Remove a row

Mar 14,16

You can use the DELETE command to remove a row from a table. The syntax: DELETE FROM table_name WHERE column_name …

Read More

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
Geek University 2022