Write an SQL query to display both the EmpId and ManagerId together. Here we can use the CONCAT command. SELECT CONCAT(EmpId, ManagerId) as NewId FROM ...
確定! 回上一頁