gpt4 book ai didi

sql - SQL 中的 tableName.* 是什么

转载 作者:行者123 更新时间:2023-12-05 01:44:35 27 4
gpt4 key购买 nike

我在网上找不到这个问题的答案(可能是因为google不喜欢特殊字符),这种形式的查询是什么意思?

Select tableName.* FROM tableName

我会说这就像 Select * from tableName 但是在 Select 语句中添加表名就没有意义了吗?

最佳答案

SELECT tableName.* 
FROM tableName

完全一样

SELECT * 
FROM tableName

它有用的地方是在JOIN中,例如:

SELECT table1.*
FROM table1
JOIN table2 ON table1.ID = table2.ID

关于sql - SQL 中的 tableName.* 是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45353563/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com