Blog

Latest Articles

Browse the latest tutorials, guides, and practical examples across Linux, DevOps, security, databases, and programming on GoLinuxCloud.

Explore the latest tutorials and guides across Linux, DevOps, programming, and more.

You can also browse content by category below:

  • Linux: Commands, administration, troubleshooting, and system operations
  • DevOps: CI/CD, Kubernetes, containers, and automation
  • Cloud: AWS, Azure, OpenStack, and hybrid cloud administration
  • Programming: Coding tutorials, scripting, and development concepts
  • Security: Ethical hacking, system security, and best practices
  • Databases: MySQL, MariaDB, PostgreSQL, and database management
  • Networking: Network setup, troubleshooting, and protocols
  • Storage: Disk management, file systems, and storage solutions
  • Tools: Useful tools and utilities for productivity

2329 articles

Blog illustration with latest articles, tutorials, guides, and how-to content across Linux and DevOps topics
databases

SQL Not Equal Tutorial

SQL Not Equal is a comparison operator used to compare two not null operand values or an expression, if the left operand value is not equal to the right operand value, then the result will be TRUE otherwise the result is …

Falguni Thakker7 min read
databases

DATEADD SQL Function Tutorial

DATEADD SQL date function that is used for manipulating DateTime datatype values, DATEADD function is used to add or subtract the specific numerical value to a specified datepart which can be a day, month,year, hour, or …

Falguni Thakker8 min read
databases

How to PROPERLY add comments in SQL [Multiple Ways]

We will cover different practical examples to explain how to add SQL comments for Single line comments, Multi-line comments, Inline comments

Falguni Thakker5 min read
databases

SQL Data Types Explained

an overview of SQL data types, also define a list of SQL data types, we have explained each category of data types and described each category data type with the storage range value,

Falguni Thakker11 min read
databases

How to alter table and add column SQL

In SQL, to add column(s) to the existing table SQL ALTER TABLE ADD statement is used, there is no statement like SQL ADD COLUMN to add the column or to modify the definition of SQL existing table, SQL ALTER TABLE …

Falguni Thakker7 min read
databases

Delete table in SQL / DROP TABLE in SQL [Practical Examples]

In this article of delete table in SQL, we have covered the delete table command DROP TABLE used to delete a table in SQL with syntax and explanation of each syntax arguments, practical examples of delete table query …

Falguni Thakker7 min read
databases

SQL INSERT INTO SELECT with Practical Examples

This article of SQL INSERT INTO SELECT, the article begins with the overview of SQL INSERT INTO SELECT with syntax, use of each syntax argument and clause, the key point to remember for SQL INSERT INTO SELECT, practical …

Falguni Thakker8 min read
databases

SQL OUTER JOIN Explained

SQL OUTER JOIN is used to preserve all of the records that have values in either the left or right table, In the SQL OUTER JOIN all the content of both tables are integrated together whether they are matched or not

Falguni Thakker12 min read
databases

SQL LIMIT Usage Explained

We have covered practical examples of SQL LIMIT starts with simple example LIMIT with number of rows , order by clause, left outer join , where clause

Falguni Thakker7 min read
databases

SQL Exists Explained in Detail

We have covered the overview of the SQL Exists operator, define the use of SQL Exists, Syntax of how to use SQL Exist with an explanation of each syntax argument, also covered the practical examples of SQL Exists starts …

Falguni Thakker9 min read
databases

SQL FULL OUTER JOIN Explained

Examples to use SQL Full Outer Join with two tables, three tables, multiple tables with Where Clause, multiple tables with Group by Clause, Using Union Clause, Using Union Clause & Where condition

Falguni Thakker8 min read
databases

SQL TOP Explained

SQL TOP clause is used to limit the records returned as the result set of SQL select query by specified number of rows or percentage of rows in SQL Server.

Falguni Thakker8 min read
databases

SQL Domain Constraints (NOT NULL, Check, UNIQUE)

Domain constraint is used to restrict the values to be inserted in the column or relation, domain constraint defines a valid set of values for a table

Falguni Thakker8 min read
databases

SQL Transactions Explained

SQL Transactions consists of a sequence of SQL statements and/or queries, the SQL standard specifies that a transaction begins implicitly when an SQL

Falguni Thakker7 min read
databases

SQL Stored Procedure Explained

SQL stored procedures are generally precompiled group of an ordered series of Transact-SQL statements stored into a single logical unit which allow for

Falguni Thakker9 min read
databases

SQL Mapping Carnality Explained with Examples

SQL mapping cardinalities define the relationship between the entities or tables of one relationship set with the entities or tables of another relationship

Falguni Thakker5 min read
databases

SQL Floor() function Explained

sql floor, floor sql, floor function in sql, floor in sql, floor sql server, sql floor function, sql server floor

Falguni Thakker3 min read
databases

SQL Drop Constraint Explained

drop constraint, drop constraint sql server, sql drop constraint, drop sql constraint, sql server drop constraint, drop foreign key sql server, alter table drop constraint

Falguni Thakker5 min read
databases

SQL add column with default value to an existing table

SQL ALTER TABLE statement is used to make changes in the existing SQL table and can be used to add column with default values

Falguni Thakker6 min read
databases

How to import SQL file using CLI in MySQL?

We are covered overview of .sql file , steps to import .sql file , how to open MySQL command line , how to change current database using USE command , and also explained two ways to import .sql files import using MySQL …

Falguni Thakker4 min read
security

Automated web cache deception attack [Tutorial]

Many of the websites on the internet are still prone to a web cache deception attack. In this kind of attack, a bad actor will “fool” a webserver to serve

Kennedy Muthii5 min read
security

Use canary tokens for intrusion detection [Tutorial]

Step by Step instructions to use canary tokens for intrusion detection

Kennedy Muthii5 min read
devops

docker run -i command examples

Use docker run -i command to run the container interactively

Deepak Prasad3 min read
system-administration

How to use cin for an array in C++

In c++ cin array is not performed in one cin statement. In this article we will learn about array input in c++. To understand array input, we first need to

Azka Iftikhar4 min read
networking

Learn How to Use Wireshark like a PRO

Learn how to use wireshark with different examples.

Celal Dogan8 min read
networking

Breaking down HTTP response at Packet Level [Wireshark Tutorial]

Step by Step instructions to analyse HTTP response at packet level using wireshark.

Celal Dogan7 min read
networking

How to analyze IPsec Traffic with Wireshark

Internet Protocol Security (IPsec) is a set of protocols that enable us to authenticate and encrypt traffic between two parties. Protocols such as Internet

Celal Dogan6 min read
linux

Show Line Numbers in Vim [Absolute, Relative, Hybrid]

vim relative line numbers active using :set relativenumber and :set rnu. relative line numbers inactive using :set norelativenumber and :set nornu. relative line numbers inactive(Other option) using :set relativenumber! …

Omer Cakmak3 min read
linux

Install Visual Studio Code Rocky Linux 9

Step by step instructions to install Visual Studio Code on Rocky Linux 9. 4 different methods to install and setup Visual Studio Code

Omer Cakmak4 min read
programming

Matplotlib.pyplot.vlines() - Draw vertical lines

Use matplotlib.pyplot.vlines to draw vertical lines in Python with examples.

Azka Iftikhar3 min read