Hi,
I have a huge database that is in sql server, and now I'm converting to mysql. I have all the tables created in mysql now I want to import the data that is in sql server into the mysql tables. Is there an easy way to do this? If someone can help, please do so. And another thing, could someone give me a sample of an If else statement.
This is what I have and I keep getting an error.
set @var = 1;
if not (@var = 0) then
select * from table1
else
select * from table2
end if;
thanks