testsprite 전략 수립

This commit is contained in:
2025-12-30 21:34:17 +09:00
parent 7853672dfa
commit 014cd151df
9 changed files with 1303 additions and 115 deletions

14
debug_db.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
require_once("lib/mydb.php");
$pdo = db_connect();
echo "--- sales_tenant_scenarios structure ---\n";
$stmt = $pdo->query("DESC sales_tenant_scenarios");
while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
print_r($row);
}
echo "--- sales_tenant_scenarios data ---\n";
$stmt = $pdo->query("SELECT * FROM sales_tenant_scenarios LIMIT 10");
while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
print_r($row);
}
?>