TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About SQL queries
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Pankaj Kumar Choudhary (5)
Akshay Phadke (2)
Jasminder Singh (1)
Priya Chavadiya (1)
Nidhi Kumari (1)
Anuradha Rani (1)
Sanjay Kumar (1)
Naveen Kumar (1)
Ashutosh Singh (1)
Jitendra Mesavaniya (1)
Siddhesh Chavan (1)
Chetan Sanghani (1)
Senthilkumar (1)
Prashanth Chindam (1)
Shivam Tiwari (1)
Vijay Prativadi (1)
Farhan Ahmed (1)
Sharad Gupta (1)
Nitin Pandit (1)
Onkar Sharma (1)
Laishram Priyokumar Singh (1)
Mohammad Hussain (1)
Sathya N (1)
Sachin Mishra (1)
Ajay Kumar (1)
Diwakar Tiwari (1)
Deepak Kumar (1)
Deepak Tewatia (1)
Rohol Amin (1)
Najmul (1)
Sanjay Singh (1)
Sonu Gupta (1)
Jay Smith (1)
Mahesh Alle (1)
Jignesh Trivedi (1)
Rakesh Kalluri (1)
Rajesh Gami (1)
Pankaj Patel (1)
Prashant Rewatkar (1)
Tushar Dikshit (1)
Suketu Nayak (1)
Bhushan Singh (1)
Syed Shanu (1)
Vignesh Ganesan (1)
Nilesh Jadav (1)
Veena Sarda (1)
Sachin Kalia (1)
Mahesh Chand (1)
Tushar Ameta (1)
Related resources for SQL queries
No resource found
NTile Function in SQL Server
10/3/2024 11:44:37 AM.
The NTile function in SQL Server divides a result set into a specified number of groups, assigning ranks to records within each group. Unlike Dense_Rank, NTile focuses on groups rather than individual
Learn Common Table Expressions (CTE) in SQL
9/4/2024 6:25:07 AM.
Common Table Expressions (CTEs) in SQL are a powerful tool for simplifying complex queries. They allow you to create temporary result sets that can be referenced within a SELECT, INSERT, UPDATE, or DE
Introduction to SQL Server & Its History
9/2/2024 7:10:06 AM.
Learn how to create, manage, and query databases using SQL Server, with a focus on essential concepts like database design, data storage, and SQL queries. Perfect for beginners aiming to build a stron
Connection with SQL and queries.
7/24/2024 8:08:46 AM.
Explore the essentials of connecting to SQL databases and executing efficient queries. Learn about various SQL commands, database management techniques, query optimization strategies, and best practic
Detailed Explanation of Procedure and Function in SQL Server
7/22/2024 6:22:57 AM.
Stored procedures are precompiled sets of one or more SQL statements that can be executed together. Functions in SQL Server are essential database objects that contain a series of SQL statements and p
SQL Server Collations: Case Sensitivity and Insensitivity
7/17/2024 6:03:08 AM.
This article explains SQL Server collations, which dictate data sorting and comparison rules. It highlights case-sensitive (CS) and case-insensitive (CI) collations with practical SQL query examples.
Ranking Functions in SQL: RANK, DENSE_RANK, and ROW_NUMBER
7/3/2024 12:19:25 PM.
Learn how these powerful functions operate within SQL queries to assign ranking values based on specified criteria, enhancing your ability to analyze and manipulate data efficiently in relational data
SQL MINUS Operator: Finding Differences Between Data Sets
6/18/2024 7:38:48 AM.
In SQL, the MINUS operator plays a crucial role in querying by allowing developers to identify and retrieve records that exist in one dataset but not in another. This article explores the functionalit
Understanding SQL Window Functions
6/13/2024 5:33:18 AM.
SQL window functions perform advanced analytics by computing values over a defined set of rows, using partitions and ordering. They enable operations like running totals, moving averages, and rankings
Exploring PostgreSQL: Datatypes and Clauses
6/7/2024 4:45:18 AM.
PostgreSQL, often referred to as Postgres, is a powerful open-source relational database management system known for its extensibility, reliability, and adherence to SQL standards.
Intersect and Except in SQL Server 2005
6/6/2024 11:46:34 AM.
Learn how to leverage Intersect and Except operators in SQL Server 2005 for efficient data manipulation. Discover their role in set operations, querying, and database management. Master T-SQL syntax f
Creating & Retrieving records from M.S.Access-2007 using Oledb in C#.net
5/31/2024 10:05:52 AM.
Discover how to interact with Microsoft Access 2007 using C# and OleDb. Create and retrieve records seamlessly, employing ADO.NET for efficient database connectivity and manipulation within your C# ap
Simple Insert And Select (CRUD) Operation Using .NET Core MVC With ADO.NET And Entity Framework Core
5/7/2024 10:33:55 AM.
Learn to perform basic CRUD operations in .NET Core MVC using both ADO.NET and Entity Framework Core. Build a robust data access layer for seamless integration with your web application.
Select Stored Proc With Raw SQL Query Via EDF Framework
4/18/2024 10:43:47 AM.
Utilize Entity Data Framework (EDF) for selecting stored procedures with raw SQL queries. Enhance data access in your application by leveraging the power of SQL alongside EDF's object-relational m
CRUD Operation with Dapper Using ASP.NET Core
4/13/2024 5:08:16 PM.
Using Dapper for CRUD operations in ASP.NET Core is straightforward and efficient. Dapper is a micro ORM that provides simple methods to execute SQL queries and map results to objects. Here's a ba
How to Use Stored Procedure in PHP
4/5/2024 5:42:14 AM.
Using stored procedures in PHP involves connecting to a database using MySQLi or PDO, preparing and executing SQL queries that call the stored procedures. Utilize parameterized queries for security an
Top 10 Most Used SQL Queries
2/6/2024 6:39:43 AM.
In this article you will learn about the top 10 most used SQL Queries. SQL Server is an interface which helps to communicate with the system’s database using queries.
SQL UPDATE with JOIN
10/30/2023 8:24:41 AM.
This tutorial will show you the concept of SQL UPDATE With JOIN.
Writing Managed Stored Procedures using C#
9/18/2023 10:43:36 AM.
This article is trying to explain the simple and required steps that are require starting the creation of Manage Stored Procedure using C# and using them.
Executing Dynamic SQL Queries
8/25/2023 4:29:06 AM.
Dynamic SQL: Defining and Executing Queries
SQL Commands : DDL, DQL, DML, DCL, TCL with Examples
7/25/2023 6:08:58 AM.
Master the art of SQL DDL commands, DCL commands, DQL commands, DML commands, TCL commands for effective database management.
How to Use Group by in MySQL
6/21/2023 7:31:13 AM.
Group by is a powerful feature in MySQL that allows you to group rows based on a specific column or set of columns. It is commonly used for generating summary reports and performing aggregations on la
Calling a Stored Procedure in ASP.NET Core
5/22/2023 5:46:00 AM.
Common Table Expression In SQL Server
3/31/2023 6:44:32 AM.
This article provides a practical guide to SQL CTE (Common Table Expressions), complete with examples that demonstrate how to use this powerful SQL feature to improve query performance and simplify co
Handling SQL Queries Using XAMPP Server
3/7/2023 6:56:51 AM.
XAMPP is a Free full-fledged development environment that lets you install the Apache web server, MariaDB database, Perl, and PHP scripting languages in one installation. It is a free solution stack f
Database Backup Using SQL Queries And Its Type
3/7/2023 6:41:21 AM.
How to make a backup of database using SQL queries in compressed and uncompressed condition or restoring database from backup using SQL queries and Difference between Compressed and Uncompressed
Using For XML Clause In SQL Queries
3/7/2023 6:20:11 AM.
For XML clause is used to convert the SQL result set into XML format. It is a very much helpful clause when we need XML data from the SQL result set. The FOR XML clause can be used in top-level querie
INTERSECTION in SQL Server
2/28/2023 8:53:06 AM.
Sometimes, we want to get a common set of rows from 2 different result sets. For example, we have 2 queries, and both return employee records. If we want to find which employees are present in both re
Structured Query Language: Part 2
2/21/2023 6:10:46 AM.
This article describes the use of different query and operator of SQL.
SQL Basic Queries
2/16/2023 9:38:51 AM.
In this article I will explain some basic SQL queries.
Important Queries in SQL
2/16/2023 8:48:04 AM.
In this article we learn some interesting and useful SQL queries.
Top 5 Tricky/Important SQL Queries And Their Answers
2/14/2023 10:36:03 AM.
In this article, you will learn about SQL Server Top 5 tricky/ important SQL Query with their answers.
Using SQL in .NET: Part 1
2/3/2023 9:18:38 AM.
In this article, I will show you how to execute SQL queries from your C# applications.
Complex SQL Queries With Split() Function in SQL
1/31/2023 5:18:03 AM.
In this article, you will learn about Complex SQL queries with the split() function in SQL.
SQL Injection In Dynamic SQL
1/25/2023 6:15:42 AM.
In this article you will learn about SQL Injection in Dynamic SQL.
Unlock the Secrets of the Rank Function in SQL Server
1/18/2023 3:14:41 PM.
Unlock the power of SQL Server and learn the essential rank functions to optimize your database. Get tips and tricks you can use immediately to maximize your SQL Server performance!
The Most Important SQL Queries For Beginners
12/17/2022 6:20:46 PM.
How do you get the data from the table? How do you create or drop the table? How do you display the different records? Do you want to? You can easily do all of this by writing a simple SQL query.
50 Important Queries in SQL Server
12/8/2022 6:56:11 AM.
In this article, you will learn about 50 Important Queries in SQL Server. EXEC sp_helpdb, exec sp_helptext, EXEC sp_updatestats, EXEC sp_MSforeachtable, SQL query for version name of SQL Server, Enabl
SQL Interview Questions - MSSQL
7/1/2021 3:32:42 AM.
Here is a list of the most popular MSSQL interview questions and answers explained. These SQL interview questions are for both beginners and professional MSSQL developers.
Executing SQL Queries And SQL Stored Procedure With ODBC
10/4/2019 8:54:04 AM.
In this article, you will learn how to execute SQL queries and SQL Stored procedure with ODBC.
Useful SQL Queries
6/13/2019 6:59:07 AM.
In this article, we'll learn some basic but useful SQL queries.
Most Asked SQL Queries In Interviews
5/27/2019 9:20:20 AM.
Do you wonder what the most frequently asked SQL queries are in interviews? Here is a list of most asked SQL queries interview questions.
Compile Queries And Execute SQL Queries Using LINQ To SQL
1/8/2017 11:18:03 PM.
In this article, you will learn how to compile queries and execute SQL queries, using LINQ to SQL.
How To View LINQ To SQL Generated SQL Queries And Using Stored Procedures With LINQ To SQL
1/2/2017 8:51:02 AM.
In this article, you will learn how to view LINQ to SQL generated SQL queries and use stored procedures with LINQ to SQL.
How To Run Interactive Spark SQL Queries On Apache Spark Hdinsight Linux Cluster
12/31/2016 12:21:23 PM.
In this article, you will learn how to run Interactive Spark SQL queries on Apache Spark HDinsight Linux cluster.
Learn MySQL Queries With Examples
6/23/2016 11:21:20 AM.
In this article, you will learn select, update and delete statements in MySQL queries with examples.
Basic SQL Queries For Beginners
6/3/2016 12:06:38 AM.
In this article you will learn Basic SQL Queries for Beginners.
Useful SQL Queries For SharePoint Practitioners
3/11/2016 9:45:15 AM.
In this article you will learn useful SQL Queries for SharePoint practitioners.
SQL Basic Query
1/31/2016 11:43:06 PM.
In this article I will explain some basic SQL queries.
CRUD Operations In SQL Server 2008
10/5/2015 2:32:33 AM.
In this article l will show you how to make CRUD operations in SQL Server 2008 by using simple SQL queries.
Some Practical Useful SQL Queries For SharePoint Adminstrator
2/26/2014 12:36:55 PM.
In this article, I will share some very practical and useful SQL queries that a SharePoint administrator will require.
Generate LINQ, SQL Queries With LINQPad
7/2/2013 2:26:56 PM.
In this article I am sharing how to generate a LINQ query with a very facilitative tool, LINQPad.
Adding Editor, and Deleting data in Web Forms using ADO.NET
2/11/2010 12:35:31 AM.
In this article I will explain Adding Editor, and Deleting data in Web Forms using ADO.NET.
Data Access through Web Services, Stored Procedures and SQL Queries
12/16/2005 7:46:57 AM.
Web Services has been the most revolutionary aspect of the .NET framework developed by Microsoft. This article presents the three different modes through which data can be accessed viz. through Web services, stored procedures and SQL query using the power of ADO.NET and XML.