guoyu/Test/sql/test_question_save.sql

22 lines
495 B
SQL
Raw 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.

-- 测试题目保存
-- 使用方法:
-- 1. 在后台修改一个题目记住题目ID
-- 2. 点击保存
-- 3. 立即执行这个SQL查询不要刷新浏览器
-- 4. 查看update_time是否更新
-- 替换{question_id}为实际的题目ID
SELECT
id,
question_content,
options,
correct_answer,
analysis,
update_time,
update_by
FROM study_question
WHERE id = {question_id};
-- 示例查询ID为1的题目
-- SELECT * FROM study_question WHERE id = 1;