mysql中的預處理方式

在MySQL中使用預處理:sql PREPARE t1 FROM 'select * from user where name=? and password=?'; SET @a = 'admin'; SET @b = '123456'; EXECUTE t1 USING @a,@b;
相關文章
相關標籤/搜索