简单问题。我有一个餐桌的人。我有两行:
1 Joe Doe joe.doe@ymail.com
2 Vivien Doe v.doe@gmail.com
如何撰写Soci语句,这会告诉我(返回)我桌上有多少行?(在我的示例中,我有2行)。
以获取SQL表中的行数使用count(*)
函数这样:
select count(*) from Person
更具体 - 将数字输入C 变量使用:
int count;
sql << "select count(*) from person", into(count);