dev-resources.site
for different kinds of informations.
SQL SERVER
Published at
1/9/2025
Categories
sqlserver
database
Author
Clever Cottonmouth
Main Article
COPY ALL DATA TO NEW TABLE
SELECT a.* INTO newTable
FROM oldTable a;
CAST
CAST(columnName as VARCHAR)
CAST(columnName as INT)
COUNT SUM OF MULTIPLE TABLE
SELECT SUM(K) AS Total_Row_Count
FROM (
SELECT COUNT(*) FROM TABLE1
UNION
SELECT COUNT(*) FROM TABLE2
) A;
Articles
12 articles in total
Show query window at startup in SQL Server Management Studio
read article
How to Set Custom Status Bar Colors in SSMS to Differentiate Environments
read article
Visual Studio Code Extension for Developers
read article
Applications for java Developers
read article
.NET DEVELOPER TOOLS NEED TO INSTALL FOR NEWLY PC
read article
GIT
read article
SQL SERVER
currently reading
SP_HELPTEXT
read article
Fibonacci Series
read article
To fetch the unique characters from a string?
read article
Counts the occurrences of each character in the string and then prints the character along with its count in c#.
read article
Find the number of occurrences for each character in a string in javascript
read article
Featured ones: