-5

我需要查询我的 SQL Server 表中的列数。

4

2 回答 2

3
select count(*) from your_table

计算所有行,即使某些记录包含NULL条目。

select count(some_column) from your_table

计算记录在哪里some_column IS NOT NULL

于 2012-11-10T10:43:54.407 回答
1

这个

select count(*) from table

*表示所有列

于 2012-11-10T10:41:48.443 回答