向数据库插入元素,若存在则不插入
https://blog.csdn.net/lycloud/article/details/24932961
1.在创建表时,将不需要重复的字段设置为unique,然后在插入时,使用insert ignore语句。
2.可以使用count(*)
COUNT(*) 函数返回表中的记录数:
SELECT COUNT(*) FROM table_name
http://www.w3school.com.cn/sql/sql_func_count.asp
https://blog.csdn.net/lycloud/article/details/24932961
1.在创建表时,将不需要重复的字段设置为unique,然后在插入时,使用insert ignore语句。
2.可以使用count(*)
COUNT(*) 函数返回表中的记录数:
SELECT COUNT(*) FROM table_name
http://www.w3school.com.cn/sql/sql_func_count.asp