Thanks for the prompt reply PH. However, if I apply your code I get the value 'NA' for all the fields where I expect a volatility value (e.g. 31.3223501286548).
I have a problem with below SQL code. Error message: "Error converting data type varchar to float."
CASE WHEN ... THEN volatility else 'NA' end) as volatility
So the field 'volatility' is of datatype 'varchar', while 'NA' is datatype 'float', right?
I guess it can be solved by using CONVERT...
Great! I got what I need now.
SELECT CONVERT(varchar, datepart(day,axiom.market_date)) + '-' + SUBSTRING(CONVERT(varchar,datename(month,axiom.market_date)),1,3) + '-' + CONVERT(varchar,datepart(year,axiom.market_date)) as DATE,
Thanks a lot for your help!
I found it:
SELECT CONVERT(varchar, datepart(day,axiom.market_date)) + '-' + CONVERT(varchar,datename(month,axiom.market_date)) + '-' + CONVERT(varchar,datepart(year,axiom.market_date)) as DATE,
The only problem I still have is that the month is the full name, not only 3 characters, e.g...
Many thanks! I'm getting there, slowly :-)
Now, for the date format. In the table the format of column market_date is yyyy-mm-dd. In the report I need a different format= dd-mmm-yy, e.g. 1-Jan-2012.
I've tried using DATEPART, e.g. SELECT DATEPART(d, market_date) + '-' + DATEPART(mm...
You are right, I should have better described my problem.
There are hundreds of row per market date in the table. I would like only 1 row per market date and several columns for government bond rates, filled with the mid rate.
@JarlH: Thanks for the prompt reply. However, this is not what I mean.
Problem with your solution is that I get this as report:
market_date EURFRGBOND1Y EURFRGBOND2Y
2012-03-14 0.32 0
2012-03-14 0 0
2012-03-14 0 0
2012-03-14 0 0
2012-03-14 0 0...
I've tried this:
CASE WHEN (rate_code='FR.EUR.GBY.0.0.1') THEN mid else 0 end as EURFRGBOND1Y
But I don't want all the 0 values, I only want to report the value per market_date and per rate_code
Goal is to select data from a table ec_rates, but some conversion is needed to have the right data/column header in a csv file
Please see 2 lines of data from the table and what I would like
rate_code market_date bid ask mid
FR.EUR.GBY.0.0.1 2012-03-14 0.32 0.32 0.32...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.