Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Convert Exponential Number to Non Exponential Number TSQL 1

Status
Not open for further replies.

JcTon

MIS
Oct 26, 2007
16
US
Familiar with using the following to convert dates within Sql Query Analyzer;

convert(varchar,START_DT,110) SeriesStartDt

Question - How do I convert a exponential number to a non-exponential number?

Currently, when I run the query in SQL Query Analyzer and then import the results into Microsoft Access, there is data missing. Missing data includes numbers in exponential format and some date fields.
 
>>
Question - How do I convert a exponential number to a non-exponential number?


Convert to float. Ex:

Select Convert(float, '2e5')

-George

"The great things about standards is that there are so many to choose from." - Fortune Cookie Wisdom
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top