Hide SQL Server database engine instances from network discovery | Cluster Instances | Availability Groups nameSQL Server Browser listens for incoming requests for Microsoft SQL Server resources and provides information about SQL Server...
2020/05/31
2020/05/30
SQL Server Working with NULL | Null Functions | Expressions | Comparisons | Examples
COALESCE() function, ISNULL() function, NULL boolean expressions, NULL Functions, NULLIF() function, SQL Development, T-SQL No comments
SQL Server Working with NULL | Null Functions | Expressions | Comparisons | Examples
What is a NULL value in SQL?
In SQL, a NULL value helps to identify that particular attribute/column data
is not available in the table. As per BOL, "Null (or NULL) is a special marker
used in Structured Query Language to indicate that...
2020/05/23
SQL Server RAND() function | Generating random number within the specific range
FUNCTIONS, Mathematical Functions, RAND function, T-SQL No comments
SQL Server RAND() function | Generating random number in a range
In this article, we will see RAND() function and also see how to generate a
random number in a range using RAND() function.
RAND() Function
The RAND function can be used to return a random number. It will return a
value between 0 and 1 such as value greater than 0 and less...
2020/05/22
2020/05/17
2020/05/14
SQL Server accent-insensitive sorts and string comparisons | collation
SQL Server accent-insensitive sorts and string comparisons
In general, SQL Server default collation is SQL_Latin1_General_CP1_CI_AS,
So by default SQL Server database is always insensitive to the case(CI) and sensitive to the accent(AS) of the characters. In sometimes we need to do accent-insensitive comparisons and sorts. To do such...