数据库语句中 select into 与select in的区别是什么

2025-01-02 14:17:06
推荐回答(1个)
回答1:

select into 是把值取出来赋值到变量中,比如:
select cola into v_a from tab where xxx;

select in 是什么?这样吗?
select * from tab where cola in (1,2,3,4,5...)

这表示查找cola的 括号中的列表中 的内容