SQLlite不支持sqrt、pow等数学函数问题

SQLlite解决支持sqrt、pow等数学函数问题



   //解决SQlite数据库不支持sqrt、pow等数学函数问题
      $db->sqliteCreateFunction('sqrt', 'sqrt', 1);
       $db->sqliteCreateFunction('pow', 'pow', 2);

你可能感兴趣的:(sqlite)