私は次の表を持っています:
アイテム:
ID Type StockExists
01 Cellphone T
02 Cellphone F
03 Apparrel T
count the number of items
既存の在庫、つまり。の行数を使用したいStockExists='T'
。私は次のようにクエリを実行していました。
Select count(StockExists)
From [Items] where StockExists='T'
しかし、それは常に1を返しています。それを行う正しい方法は何ですか?
編集:
また、別のそのようなカウント操作を実行し、それらを1つの行に追加する方法。たとえば、
Select count(StockExists)
From [Items] where StockExists='T'` and `Select count(Type)
From [Items] where Type='Cellphone'` ?