wordpress代码:sql 话语中的 pm wp 是什么意思

WBOY
Release: 2016-06-13 12:51:35
Original
1252 people have browsed it

wordpress代码:sql 语句中的 pm wp 是什么意思?
看到以下代码:
WordPress 使用久了,有些 Post 删除了,但是其对应的 Post meta 数据还存在,那么怎么删除这些孤立的 Post Meta 数据呢?在数据库管理软件中直接运行下面的 SQL 语句:
DELETE pm
FROM wp_postmeta pm
LEFT JOIN wp_posts wp ON wp.ID = pm.post_id
WHERE wp.ID IS NULL


----不解的是,“pm" ,"wp" 是什么意思 ?


------解决方案--------------------
就 SQL 指令而言 pm 是表  wp_postmeta 的别名,wp 是表  wp_posts 的表名

稍微复习一下数据库知识就可以回忆起来
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template