Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
mysqlテーブルに保存されている負の数のカウントを取得したいと思います。例:先月のアカウントからの引き出しの総数と金額を取得したい。
私はこれが余分な行を使用して行うことができることを知っています。しかし、テーブルの構造を変更せずにこれを実行したいと思います。「WHEREAmount<0」で試しましたが、うまくいきませんでした。助けてください。
何かのようなもの:
SELECT COUNT(*) FROM Account WHERE Amount<0;
これは私のために働く
select count(0) from test where id < 0