MySQL:Count()子查询不返回任何内容

时间:2016-05-09 08:54:56

标签: mysql select count

我想计算表国家/地区的所有用户ID和所有条目。但是当我执行我的查询时,它不会显示任何结果。

SELECT (
  SELECT
    COUNT(userId)
  FROM
    tbl_user
)
AS
  countUser,
(
  SELECT
    country
  FROM
    tbl_user
)
AS
  country

感谢每一位帮助和评论!

2 个答案:

答案 0 :(得分:1)

使用以下查询

  label.Content = (Convert.ToInt32(label.Content) +  Convert.ToInt32(btn.Content)).ToString();

答案 1 :(得分:0)

尝试此查询

select * from (
     select count(id) as countUser, name as country from tbl_user
) b