SQLlite解決支持sqrt、pow等數學函數問題 sql
//解決SQlite數據庫不支持sqrt、pow等數學函數問題 $db->sqliteCreateFunction('sqrt', 'sqrt', 1); $db->sqliteCreateFunction('pow', 'pow', 2); 數據庫