I have created one table using below command:
create table Table1( Id int Not Null Foreign key references Table2(Id) on delet
you can put:
> show create table tablename;
you will see how was created the table...columns, types...etc. and you could see your constraint name.