MySQL Forums
Forum List  »  Triggers

Re: Select into statement
Posted by: Peter Brawley
Date: December 19, 2011 01:47PM

Did you try it?

drop table if exists t;
create table t(i int);
insert into t values(1);
set @x=0;
select i into @x from t where i=5;
select @x;

Options: ReplyQuote


Subject
Views
Written By
Posted
1762
December 19, 2011 01:25PM
Re: Select into statement
1004
December 19, 2011 01:47PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.