Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在下面的代码摘录中,我想知道“p”和“p1”是什么。我最好的猜测是它们是别名,但我找不到在其余代码中使用的别名语法(例如:people AS p)。
$query ="SELECT p.* FROM $wpdb->posts p, $wpdb->postmeta p1
谢谢您的帮助。
它们确实是别名,这是定义它们的地方。这是有效的 SQL 语法,至少在 oracle 中是这样。
“posts”表之后被引用为“p”,您可以在“p.*”部分看到它。
看看这个问题。
正确,您不必使用语法 as 来定义别名。这是一个很好的 StackOverflow 链接,已得到回答:别名