Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何从数据库表中计算选择的字符串。在我的一个专栏中有两个字符串,分别称为“正确”和“错误”。我有所有的东西。我想计算列中有多少个称为“正确”的字符串以及有多少个称为“错误”的字符串。我正在使用sqlite。
您可以尝试 count(*) 和 where.. 类似:
SELECT Count(*) FROM yourTable WHERE yourColumn = 'wrong';
还有一个算正确的,或者你可以从总数中减去..希望对您有所帮助!