Viewing 15 posts - 1 through 15 (of 16 total)
Absoulty fantastic!
Mine ended up looking like this mess because I'm calculating a bunch of sales numbers first but your solution works flawlessly.
Thank you.
SELECT dbo.corda_main.salesman,
...
February 28, 2007 at 2:27 pm
I had a table with values for goals (stored with datatype [money]) and was dividing the sum of the values in other tables (stored with datatype [money]) by the value...
February 27, 2007 at 11:04 am
I'm going to use FLOAT. I've found out that doing division on MONEY gives incorrect results.
February 27, 2007 at 10:46 am
How do I update from one table to another matching on PrimaryKey?
November 3, 2006 at 11:26 am
There has got to be an easier way. I can do this in FileMaker by clicking a box on import.
November 3, 2006 at 5:51 am
Make sure the .mdf files are not read only.
October 11, 2006 at 7:03 am
Works like a charm. Thank you. Thank you. Wow there is so much to learn about SQL.
August 29, 2006 at 9:43 am
That's what I have done. 0 to 499 in one and 500 to 999 in another. It's ugly but it works. =)
August 10, 2006 at 7:49 am
I wish it where that simple.
August 10, 2006 at 5:49 am
Well 991 columns will work just fine. Strangely enough I don't have this problem using [int] NULL as a datatype. As far as I can tell [money] NULL is using...
August 9, 2006 at 12:35 pm
The problem I had was that I am importing from an external source using flat files. Our external source stores entries with no date as 00-XXX-00. The 00-XXX-00 values would...
July 24, 2006 at 2:24 pm
How can I import the date into the table and store it in a different format if I use datetime as the datatype?
July 18, 2006 at 6:50 am
I figured it out. My previous table had the date field set as varchar(255) and my current date field is set to datetime, changed it to varchar(255) and the dates...
July 17, 2006 at 1:03 pm
That can't be right because even if I use:
SELECT CONVERT(CHAR(50), GETDATE(), 101)
->07/17/2006
July 17, 2006 at 12:54 pm
Viewing 15 posts - 1 through 15 (of 16 total)