Viewing 11 posts - 1 through 11 (of 11 total)
create table D1 (a int,df varchar(20),)
Note: Nothing to worry about it.
Bcoz aftet df varchar(20) declaration , its considering as we are going to declare one more variable....
March 23, 2011 at 4:30 am
no. it will not display. Bcoz insertion is not happening then how can display sum?
then creating table is happening and insertion is not happening and sum is coming null in...
March 22, 2011 at 2:35 am
My answer is like this
first part which is i 've answered:
Declare @value1 decimal(20,10),@value2 decimal(20,3)
SET @value1 = 1234567890.123456789
SET @value2 = 0.1
SELECT @value1 * @value2
Second part is screened answer:
DECLARE @value1...
March 22, 2011 at 1:37 am
Viewing 11 posts - 1 through 11 (of 11 total)