Viewing 6 posts - 1 through 6 (of 6 total)
if you want only theose rows present in table2 but not in table1 then user the following query:
select * from table2 where col2 not in(select col1 from table1)
But if...
September 5, 2003 at 12:26 am
when you put 5:45 in a cell it automatically sets the datatype of the cell 'DATE'(hh:mm format).So when you get SUM using formula it will autometically give you 11:10.
August 21, 2003 at 11:56 pm
'PRICE' may be the reserved keyword.Pls try the code after changing it.
I presume it will work.
August 19, 2003 at 1:02 am
Yeah.. You have to check first whether the string is empty or not.
July 30, 2003 at 10:54 pm
You can always convert a varchar field to a decimal field.I have tested this by creating a Test Table with a decimal field with length=5,precision=9,scale=3.
And then running the follwing query:
insert...
July 30, 2003 at 5:04 am
select (select count(*) from Table_Name where Column_Name<5) as 'LESS',
(select count(*) from Table_Name where Column_Name>5) as 'MORE'
July 30, 2003 at 3:30 am
Viewing 6 posts - 1 through 6 (of 6 total)