select 3/4

  • HELLO,

    trying to fetch float value .75 but select 3/4 always give me 0, any idea how to achive this.

    thanks and Regards

    sachin

  • integer division always results in integers. cast one term to float to get a float.

    select cast(3 as float)/4

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply