July 2022

MySQL Delete Table

Introduction MySQL provides the DROP TABLE command to delete a table. If you have created several tables in a database and now you no longer need them, you will definitely want to delete them.Another possible scenario is that you just want to delete the data within a table without deleting the structure as well. This …

MySQL Delete Table Read More »

MySQL Create Table

Introduction MySQL provides a command to create a new table; this command is called CREATE TABLE. If you are creating your own database you will definitely need to create multiple tables within it.Well, this post will show you the command syntax and several practical examples to best learn how to use it. Preliminary operations Since …

MySQL Create Table Read More »

Python min()

Introduction Python provides the min() function to find the minimum (or smallest) element among a group of values.This function is built-in and you can find it in the official documentation. The Python min() function can be used with all iterators, therefore with lists, tuples and dictionaries. In the next sections we will see in detail …

Python min() Read More »

Python max()

Introduction Python provides the max() function to find the maximum (or largest) element among a group of values.This function is built-in and you can find additional information reading the official Python documentation. In the next sections we will see in detail how to use the max() function with examples. Are you curious to find out …

Python max() Read More »