I've been given a connection to a MySQL database on a Linux server - the version appears to be 5.1.52. I'm able to run "select" statements with no problem. I think everything has to be in lower case. I'm trying to create variables and getting an error: "Fatal error encountered during command execution." Each of the following statements, for example, will yield the error:
Code:
set @t1=1;
set @t3:=4;
select @t1=1;
select @t3:=4;