0

データベース テーブル内の個別の値の数をカウントするクエリを作成しています。だから私は次のようにクエリを書きました:

select count ( distinct user_id ) as unique_users from 1_time_access;

エラーが発生しています

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'distinct user_id ) as unique_users from 1_time_access' at line 1

誰が私が欠けているのか説明できますか?

4

1 に答える 1

3

countと開き括弧の間のスペースを削除します。

select count(distinct user_id) as unique_users from 1_time_access;
于 2012-06-20T05:22:53.297 に答える