question Select statement

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi All,
when I use the following statement
Select col1,col5,0.0,col9,0.0

the datatable shows the zeros as int not currency, how can I ensure the zero is picked up as
a currency/decimal ?

MAny Thanks
 
when I use the following statement
Select col1,col5,0.0,col9,0.0

the datatable shows the zeros as int not currency, how can I ensure the
zero is picked up as
a currency/decimal ?
one way:

SELECT
col1,
col5,
CCur(0),
col9,
CCur(0)
......
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top