Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Setzen Sie das Ergebnis einer Abfrage auf eine Variable in MySQL

SELECT salary INTO @variable1 FROM employee_info WHERE emp_id = 12345678 LIMIT 1;

oder

SET @variable1 = (SELECT salary FROM employee_info WHERE emp_id = 12345678 LIMIT 1);

SELECT @variable1;