peixue-dev/Archive/[一次性]执行创建考核题目-2026-02-26.bat

32 lines
774 B
Batchfile
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@echo off
chcp 65001 >nul
echo ========================================
echo 执行创建考核题目数据
echo ========================================
echo.
echo 正在连接数据库并执行SQL...
echo.
mysql -u root -p123456 peidu < "Archive\[一次性]创建考核题目数据-2026-02-26.sql"
if %errorlevel% equ 0 (
echo.
echo ✓ 考核题目数据创建成功!
echo.
echo 已创建题目:
echo - 金牌陪伴员king12道题
echo - 金牌陪伴员gold12道题
echo.
echo 现在可以重新测试考核功能了
) else (
echo.
echo ✗ 执行失败,请检查:
echo 1. 数据库连接信息是否正确
echo 2. exam_question 表是否存在
echo 3. SQL语法是否正确
)
echo.
pause