How To Get All Column Names Of Table In SQL
SQL

In this article, we are going to learn how to get all column names of the SQL table.
In my recent project, I want to create a store procedure in that I want a list of all column names, I can do copy-paste but the challenge is that what to do when there is more than 30-40 field it take too much time.

Stuff Function In SQL
SQL

In this article, we are going to learn about STUFF() function.
STUFF function deletes a sequence of characters from a source string and then inserts another sequence of characters into the source string, starting at a specified position.

EXISTS and NOT EXISTS In SQL
SQL

In this article, we will discuss the EXIST and NOT EXIST operators in SQL. Use EXISTS to identify the existence of a relationship without regard for quantity. For example, EXISTS returns true if the subquery returns single rows, and NOT EXISTS returns true if the subquery returns no rows.

UnPivot Table In SQL
SQL

In this article, we are going to learn how to use UnPivot Table in SQL. UnPivot is another operation in SQL that perform almost reverse operation of Pivot by transfer data from rows to columns. Let us understand with an example.

Reversing Pivot In SQL
SQL

In this article, we are going to learn how to Reverse and get original table after apply Pivot operation to table in SQL. Reversing Non-aggregate Pivoted Table Reversing a PIVOT operator is only possible if the pivoted table doesn’t contain aggregated data.

Subscribe

Select Categories