How to compare column names in two tables in SQL
In this article you will see how to compare column names in two table. Assume that, you have two tables and you are asked to… Read More »How to compare column names in two tables in SQL
![]()
This website provides a SQL server, SSRS, Power BI, Python, Azure basics and advanced tutorials for beginners and professionals .
You will find out a step-by-step walk through of the basics and advanced topics with practical and include numerous hands-on activities.
In this article you will see how to compare column names in two table. Assume that, you have two tables and you are asked to… Read More »How to compare column names in two tables in SQL
![]()
How to search for string within xml column in SQL table? As you can see here we have a sample table having categories and products… Read More »Search string in xml
![]()
This article demonstrate how to add a bookmarks to a report in SSRS. Bookmark allows us to to navigate from one part of report to… Read More »Add a Bookmarks to a report in SSRS
![]()
This article demonstrate how to auto refresh SSRS report data, in SSRS report you can set auto refresh time interval (in seconds) for report, at… Read More »Auto Refresh SSRS Report Data
![]()
This article demonstrate how to create a multi group drill down report, means drill down report on nested grouping. Lets see the step by step… Read More »Create Multi Group Drill Down Report in SSRS
![]()
This article demonstrate how to create a Drill Down group report in SSRS. In general, a drill down report allows users to click on plus… Read More »Create Drill Down Group report in SSRS
![]()
An Embedded data source, also known as a report-specific data source is a data connection that is saved in the report definition, and embedded data… Read More »Create an Embedded Data Source in SSRS
![]()
This article demonstrate, how to show Running total/Cumulative total within grouping, if you do not know what is cumulative total then you can refer article… Read More »Show Group By Running total in SSRS
![]()
This article demonstrate how to add a row number, or serial number or you can say a Row number column in existing SSRS report. Although… Read More »Add row number in SSRS report
![]()
Parameters allows the users to control the report data, it filters the report dataset based on value provided to parameter using a text box. In… Read More »Parameters in SSRS
![]()
This article demonstrate how to set alternate row background colors for SSRS table report. As you can see, here we have a sample report name… Read More »Alternate row colors in SSRS
![]()
As a SQL Server developer you must know some keyboard shortcuts while working on SQL Server Management Studio, although it is not necessary to know… Read More »SSMS keyboard shortcuts
![]()
Sometimes you need to export data from SQL Server tables, views or the result of any T-SQL query into excel file, reason could be anything… Read More »Export data from SQL Server to an Excel file
![]()
Date data type allows you to store the date data in the database. It takes 3 bytes to store a date value. SYNTAX date The… Read More »SQL Server Date
![]()
Assume you have a table containing alphabetic, numeric, alphanumeric strings, and special characters, and you need to retrieve only the alphanumeric strings from that data.… Read More »How to fetch alphanumeric string from table
![]()
SQL Server indexes are used by queries to find data values quickly in tables and views. Basically it speed up the queries performance. You can… Read More »Difference between clustered index and non clustered index
![]()
SQL STATISTICS IO is a set statement , when it is enabled it causes SQL Server to display information about the amount of disk activity… Read More »SET STATISTICS IO
![]()
The IS NULL is used in SQL to find a NULL value. It returns TRUE if a NULL value is found, otherwise it returns FALSE.… Read More »SQL IS NULL
![]()
The IS NOT NULL is used in SQL to find a non-NULL value. It returns TRUE if a non-NULL value is found, otherwise it returns… Read More »SQL IS NOT NULL
![]()