SQL · 29 Dec 2021

How to deal with INNER JOIN in SQL

INNER JOIN is the simplest JOIN type and if you want to understand the clue of using JOINS,
you definitely should start from this point.

In this article i will show you how to use INNER JOIN and explain when to use it properly.

Read more
SQL · 29 Dec 2021

How to use AS alias in SQL

Sometimes you want to change the column name to make it more readable and easier to analyze.

AS clause will fit all your expectations in this field

Read more
SQL · 27 Dec 2021

SQL Basic Commands

SQL is not a hard language, but the common usage of different ORM tools can make us less focused on clean SQL queries than ever.

This is why i wrote here a small cheatsheet with simple SQL commands.

Read more
Ruby · 20 Dec 2021

How to copy folder from SSH to local

Copying data from ssh to local is not that hard:

scp -r admin@servername.com:domains/domain-name.pl/public_html/admin/backups admin/backups

This is how to copy from local to remote:

scp /Downloads/example_file.txt admin@servername.com:domains/domain-name.pl/public_html/admin/backups

You can use "-r" flag to copy full folder. Without this you can copy only one file.