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.
有什么方法可以在 sql 中将表的列作为数组访问?例如: 表1
NAME abc def ghi jkl
我们可以像 NAME[0] 一样访问它吗?
SQL 不支持数组(目前),但您可以通过对 select 使用 'WITH' 关键字或对 WHERE 语句使用 'IN' 来创建相同的效果。听起来模棱两可,但如果您向我们提供更多信息,我会很乐意扩展。
简短的回答是否定的。
长答案将取决于您的数据库,并且可能不是普通的 sql。