-
SQL入门教程中的代码纠错
资源介绍
代码改错
SELECT赋值语句不能和SELECT语句同时使用
╳
√
select @upoint = upoint, birthday from customers
where customername=‘喜来乐'
select @upoint = upoint,@birthday=birthday
from customers
where customername='喜来乐'
代码改错
- 上一篇: 变量的综合应用-SQL入门教程
- 下一篇: PRINT输出语句-SQL入门教程