📜  py sqlite 如果条目存在 - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:16.259000             🧑  作者: Mango

代码示例2
-- Count entries in database
SELECT count(*);

-- Count rows in table
SELECT count(*) FROM peoples;
-- returns the number of rows in this table

-- Count rows with filter
SELECT count(*) FROM peoples WHERE age = 20;
-- returns the number of rows/peoples with an age of 20

-- If none (matching) row is in the specified
-- table it will return 0. So you can
-- check for "if (SQL_return >= 1)"