|
|
-
Viral Bhatt Liked 1 Years ago through Just Learned | 1 Point
In SQL Server Management Studio, we can select text and press SHIFT+CTRL+U and SHIFT+CTRL+L to change the selected text to upper case and lower case respectively. I have been looking for a similar option in Microsft word and just learned that this ca...
|
-
Viral Bhatt Learned 1 Years ago through Just Learned | 1 Point
In SQL Server Management Studio, we can select text and press SHIFT+CTRL+U and SHIFT+CTRL+L to change the selected text to upper case and lower case respectively. I have been looking for a similar option in Microsft word and just learned that this ca...
|
-
Viral Bhatt Liked 1 Years ago through Just Learned | 1 Point
In SQL Server Management Studio, we can select text and press SHIFT+CTRL+U and SHIFT+CTRL+L to change the selected text to upper case and lower case respectively. I have been looking for a similar option in Microsft word and just learned that this ca...
|
-
Viral Bhatt Learned 1 Years ago through Just Learned | 1 Point
In SQL Server Management Studio, we can select text and press SHIFT+CTRL+U and SHIFT+CTRL+L to change the selected text to upper case and lower case respectively. I have been looking for a similar option in Microsft word and just learned that this ca...
|
-
Viral Bhatt Liked 2 Years ago through Just Learned | 1 Point
Just learned that the matching datatype for sql datatype TINYINT in Microsoft .net Framework is BYTE......
|
-
Viral Bhatt Learned 2 Years ago through Just Learned | 1 Point
Just learned that the matching datatype for sql datatype TINYINT in Microsoft .net Framework is BYTE......
|
-
Viral Bhatt Liked 2 Years ago through Just Learned | 1 Point
Just learned that the matching datatype for sql datatype TINYINT in Microsoft .net Framework is BYTE......
|
-
Viral Bhatt Learned 2 Years ago through Just Learned | 1 Point
Just learned that the matching datatype for sql datatype TINYINT in Microsoft .net Framework is BYTE......
|
-
Viral Bhatt Liked 2 Years ago through Just Learned | 1 Point
Just learned that the matching datatype for sql datatype TINYINT in Microsoft .net Framework is BYTE
|
-
Viral Bhatt Liked 2 Years ago through Just Learned | 1 Point
Aggregate functions always return at least one row. So using aggregate functions to check for the existance of data will not give correct results. See the results returned from these queries
[code]
declare @t table(i int)
if exists(select i from @t...
|