我想计算表国家/地区的所有用户ID和所有条目。但是当我执行我的查询时,它不会显示任何结果。
SELECT (
SELECT
COUNT(userId)
FROM
tbl_user
)
AS
countUser,
(
SELECT
country
FROM
tbl_user
)
AS
country
感谢每一位帮助和评论!
答案 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