This repository has been archived on 2025-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
host_democracy/democracy/api/sql/BETA_COUNT_MAIL.php

11 lines
273 B
PHP

<?php
namespace SQL;
class BETA_COUNT_MAIL extends \SYSTEM\DB\QQ {
public static function get_class(){return \get_class();}
public static function mysql(){return
'SELECT COUNT(*) as count FROM `beta`'.
' WHERE emailedAt IS NULL AND storedAt IS NOT NULL;';
}
}