top of page
Search

How to Use IndexedDB — A NoSQL DB on the Browser
IndexedDB is a large-scale, NoSQL storage system. It lets you store just about anything in the user’s browser. In addition to the usual...
The Tech Platform
Jul 8, 2021

New Features In MS SQL Server 2019
In this article, we will cover all the new feature in SQL Server 2019. The previous version of SQL 2017 came with support for Linux...
The Tech Platform
Jul 5, 2021

Second Highest Salary in MySQL and SQL Server
Write a SQL query to get the second highest salary from the Employee table. +----+--------+ | Id | Salary | +----+--------+ | 1 | 100 ...
The Tech Platform
Apr 28, 2021

Executing Raw Sql Queries using Entity Framework Core and returns result to Generic Data Model
Entity Framework Core is a widely used Object-Relational Mapping (ORM) tool for .NET developers. It allows developers to work with...
The Tech Platform
Apr 26, 2021

What are Joins in SQL? With Examples
In this article, we will explore the concept of joins in SQL and provide clear examples to illustrate their usage. What are Joins in SQL?...
The Tech Platform
Apr 16, 2021


How to solve Arithmetic overflow error in Microsoft SQL Server Database
The error "Arithmetic overflow error converting IDENTITY to data type int" comes when IDENTITY value is inserted into a column of data...
The Tech Platform
Apr 15, 2021

Nth Highest Salary Example in MySQL and SQL Server
Write a SQL query to get the nth highest salary from the Employee table. +----+--------+ | Id | Salary | +----+--------+ | 1 | 100 |...
The Tech Platform
Apr 14, 2021

ALTER Command in SQL
ALTER is not part of classical CRUD operation but it’s one of the important DDL commands. One of the most frequent uses of ALTER command...
The Tech Platform
Apr 13, 2021

How to use DROP command to remove tables in Oracle, MySQL and SQL Server
The DROP command is an SQL statement used to remove or delete objects, such as tables, views, indexes, or other database objects, from a...
The Tech Platform
Apr 13, 2021

Writing SQL in C# or When You should not use ORM
I noticed that when it becomes necessary to work with SQL databases in .Net applications, developers often chose some ORM library (.Net...
The Tech Platform
Apr 13, 2021
bottom of page