sql 变量赋值

时间:2023-03-08 17:31:29

mysql 的变量赋值如下:

set @name='app' ;

or

set @name:='appfirst';

or

with select

select @appname:='you name';

or  select  @appfirstname:=field from tablename;

使用的过程与sql server是有区别的。

oracle 的变量赋值与mysql 的:= 是相同的。