Below is my table
create
procedure studenttableas
create
table studenttable(Stud_regno int ,Stud_id int primary key,Stud_name varchar(50),Dob date,gender varchar(20),father_name varchar(50),mother_name varchar(50),father_occupation varchar(40),mother_occupation varchar(40),contact_no bigint,email_id varchar(200),street varchar(250),city varchar(50),state varchar(100), country varchar(50),zipcode bigint);From this table i want to view the table structure and how to modify any of the parametes
please help me
thank you all
SenthilkumarPosted Jul 17, 2012, 2:14 AM
You can add, drop and modify the columns in the sql server table.
Modify the column in the table,
Posted Jul 17, 2012, 1:00 AM
Currenly in your sp, you don't have any parameters.
Please post more information.