Basics Of SQL
  • By hjoshi@jamesknows.com
  • September 27, 2023
  • SQL

Basics Of SQL Structured Query Language (SQL) is the foundation of database management and a vital tool for anyone working with data. Whether you're a seasoned database administrator or just…

Types of SQL Commands
  • By hjoshi@jamesknows.com
  • August 21, 2023
  • SQL

Types of SQL Commands SQL consists of several commands that are used to communicate with the database. SQL commands are nothing but a set of instructions that performs specific tasks,…

Outer Joins In MYSQL
  • By hjoshi@jamesknows.com
  • August 3, 2023
  • SQL

Outer Joins In MYSQL In the last blog, we talked about inner join in Mysql. Now, in this blog, we will discuss Outer joins in MYSQL, Self join, Cross join,…

How to Connect Python with MYSQL Database?
  • By hjoshi@jamesknows.com
  • August 2, 2023
  • SQL

How to Connect Python with MYSQL Database? In this blog, we will discuss How to Connect Python with MYSQL Database? Python's rich ecosystem offers several libraries and modules that seamlessly…

Joins and Set Operations in SQL
  • By dkakade@sevenmentor.com
  • July 3, 2023
  • SQL

Joins and Set Operations in SQL What is SQL? SQL is an abbreviation for Structured Query Language which is a standardized data-based development language. SQL allows you to connect to…

SQL Joins with Example
  • By hjoshi@jamesknows.com
  • June 29, 2023
  • SQL

SQL Joins with Example In this blog, I will talk about SQL Joins with Example. Basically, joins are used to join two or more tables to show common records between…

CRUD Operations in Databases
  • By hjoshi@jamesknows.com
  • June 19, 2023
  • SQL

CRUD Operations in Databases CRUD Operations in Databases is a popular acronym for four basic operations when interacting with a database management system or working with APIs. What is CRUD?…

SQL Interview Questions and Answers
  • By hjoshi@jamesknows.com
  • April 28, 2023
  • SQL

SQL Interview Questions And Answers The blog will tell you Mostly asked SQL Interview Questions and Answers. The blog is Applicable for the posts of SQL Developer, Data Analyst, Business…

SQL Logical and Like Operators
  • By hjoshi@jamesknows.com
  • April 3, 2023
  • SQL

SQL Logical and Like Operators The SQL Logical and Like Operators are used between multiple conditions to check whether they are true or false. These two operators are called the conjunctive…

Most Asked Interview Questions for SQL
  • By dkakade@sevenmentor.com
  • March 14, 2023
  • SQL

15 Most Asked Interview Questions for SQL  Relational databases are commonly accessed using SQL, or Structured Query Language. Given the enormous amount of data already present, we must comprehend how…

SQL Functions
  • By hjoshi@jamesknows.com
  • February 27, 2023
  • SQL

Aggregate Functions in SQL  This blog will discuss the following aggregate functions in SQL.   MIN() MAX() SUM() AVG() COUNT()   MIN() Function :    MIN() Function returns the smallest…