检测SQL COUNT(*)语句是否具有新值

时间:2018-11-25 09:58:53

标签: php mysql

如何检测COUNT是否具有新值?

我想提醒您COUNT号是否已更改

# Check if file already exist
check = False
for file in os.listdir(path):
    print("I found this file\t" + file)
    if pattern.match(file):
        check = True

if check is True:
    print("\t" + name + " file exist" + "\n")
else:
    print("\t" + name + " does not exist")

0 个答案:

没有答案