Skip to content

Tag: sql

Dividing by decimal values – rounding issue

I’m trying to divide two decimal values, in hope they will return the following; 1.132930. However, SQL appears to be rounding the value to 1.132931. The value returned before conversion is 1.1329305135951. The SQL code i’m using is as follows: Answer You can round the value before the cast as fol…

SQL Combining two different tables

(P.S. I am still learning SQL and you can consider me a newbie) I have 2 sample tables as follows: Table 1 |Profile_ID| |Img_Path| Table 2 |Profile_ID| |UName| |Default_Title| My scenario is,…