Friday, February 25, 2011

How Get Convert Float Value To Interer Value

float fl=129.89;
int in=(int)fl;

Output will be =
130

No comments:

SQL Optimization

  SQL Optimization  1. Add where on your query  2. If you remove some data after the data return then remove the remove condition in the sel...