The error code 1054 appears after aliasing the MySQL table, the solution to the unknown column error

SELECT last_name, e.`job_id`, job_title FROM employees e,jobs WHERE e.`job_id`=jobs.`job_id`;

If the table is aliased, it must be replaced with the alias after select. Two table names cannot appear, otherwise an error will occur

Guess you like

Origin blog.csdn.net/weixin_46999174/article/details/108785134