摘要: set @s = 'SELECT * FROM employees WHERE emp_no = ?'set @a = 100000;PREPARE stmt FROM @s;EXECUTE stmt USING @a;DEALLOCATE PREPARE stmt; 阅读全文
posted @ 2021-09-14 14:05 learnnote 阅读(69) 评论(0) 推荐(0)