我正在尝试计算1位小数的比率。所以我使用
创建了一个视图create or replace view MyView
as
select cast(A/B as numeric(4, 1)) as ratio from MyTable;
A是int类型,B是实数,带有3个小数位 我收到了错误
无法将视图列“比率”的数据类型从数字更改为数字(4,1)
知道如何解决这个问题吗?
答案 0 :(得分:2)
namespace App\Controller;
use App\Model\Table\Processes; #Using PSR-4 Auto loading
use App\Controller\AppController;
class BookmarksController extends AppController{
public function tags(){
$data = Processes::getData(); #Now you can assess Data
}
}
首先:
drop