[Solved] Problem doing multiplication operation in a select between a float and an integer in sqlite [closed]

Sqlite uses ., not , for the decimal point in a floating pointer number (Do any sql databases accept a comma for it?). When you multiply a number (4) by a string (‘99,99′) the leading numeric portion of the string is converted to a number, so you’re seeing the result of 4 * 99. (SELECT … Read more