Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
create table scholarships (
F_ID int(11) primary key,
F_FirstName varchar(80),
F_LastName varchar(80),
F_PeoplesoftId varchar(80),
F_email varchar(80),
F_City varchar(80),
F_State varchar(80),
F_PostalCode varchar(80),
F_Amount varchar(80),
F_Semester varchar(80),
F_Year varchar(80)
);