Renan Moura

Renan Moura

I'm a Software Engineer working in the industry for a decade now. I like to solve problems with as little code as possible. I’m interested in solving all sorts of problems with technology in creative and innovative ways. From everyday shell scripts to machine learning models. I write about Software Development, Machine Learning, and Career in tech.

SQL: Data Types

sql data types

Data Types Each field in a Table has a Type. A Data Type is used to specify what kind of object that particular field will store. When creating your own structures, using the right type for the right data is…

union(): merging Sets in Python

union() method merge sets

The union() method merges as many sets as you want and returns a new set as a result. The items in the new set are unique, meaning no repetitions. In the example below both sets together should equal 6 items,…

SQL: Tables and Basic Structure

SQL: Tables and Basic Structure

This is a direct continuation of my previous article Introduction to SQL. SQL works on a structure with four components: Table, Field, Row, and Column. You can think of those components exactly like the ones in spreadsheets like Excel. A…

Introduction to SQL

intro to SQL

It doesn’t matter if you are a frontend, backend, or a full stack developer, knowing SQL is a must have skill. What is SQL and why you should learn it SQL stands for Structured Query Language. It is pronounced SEQUEL.…