このクエリはエラーを返します (フィールド リストの不明な列 numero_propostas)。私が欲しいのは次のようなものです:
SELECT COUNT(*) as numero_propostas,
total as total,
(numero_propostas / total) as divisao
FROM ConsultaArtigos2 AS ca
...
正しい方法は何ですか?
このクエリはエラーを返します (フィールド リストの不明な列 numero_propostas)。私が欲しいのは次のようなものです:
SELECT COUNT(*) as numero_propostas,
total as total,
(numero_propostas / total) as divisao
FROM ConsultaArtigos2 AS ca
...
正しい方法は何ですか?
SELECT COUNT(*) as numero_propostas,
total as total,
(COUNT(*)/ total) as divisao
FROM ConsultaArtigos2 AS ca...
MySQLクエリステートメントでは、参照の場所で列名を使用する必要があります
SELECT COUNT(*) as numero_propostas,
total as total,
(COUNT(*) / total) as divisao
FROM ConsultaArtigos2 AS ca