
MySQL supports using single quotes, double quotes and backticks. Here is when to use single quotes, double quotes and backticks in MySQL.
MySQL supports using single quotes, double quotes and backticks. Here is when to use single quotes, double quotes and backticks in MySQL.
Inner join and outer join are useful to join database tables in SQL. Here is the difference between inner join and outer join in SQL.
Sometimes you may need to get data for every hour, or retrieve hourly data in MySQL. Here is how to get data for every hour in MySQL.
It is useful to fetch last 1 hour rows or retrieve last 1 hour records. Here is how to get last 1 hour data in MySQL.
Sometimes you may need to find rows not present in another table or select rows not present in another table. Here is how to show rows not present in another table in MySQL.
It is useful to get current week records or fetch this week records in MySQL. Here is how to get current week data in MySQL.
Sometimes you may need to select top n records for each category. Here is how to select top 10 records for each category in MySQL.
Common Table Expressions allow you to easily write complex SQL queries in MySQL. Here is how to create common table expressions in MySQL.