3.4.8 Add/Delete Constraint

3.4.8 সীমাবদ্ধতা যোগ/বিলোপ কৰক

Suppose you have created the table ‘student’ without specifying any primary key, in such a case, the following query:

ধৰি লওক আপুনি কোনো প্ৰাথমিক কী নিৰ্দিষ্ট নকৰাকৈ তালিকা ‘ছাত্ৰ’ সৃষ্টি কৰিছে, এনে ক্ষেত্ৰত, নিম্নলিখিত প্ৰশ্ন:

ALTER TABLE student ADD PRIMARY KEY (Roll No);

তালিকা সলনি কৰা শিক্ষাৰ্থী প্ৰাথমিক কী যোগ কৰক (ৰোলনং);

will set the Roll No field as the primary key of the table.

তালিকাৰ প্ৰাথমিক কী হিচাপে ৰোল নং ফিল্ড ছেট কৰিব।

To delete the primary key constraint, the query is:

প্ৰাথমিক মূল সীমাবদ্ধতা বিলোপ কৰিবলৈ, প্ৰশ্নটো হৈছে:

ALTER TABLE <TableName> DROP PRIMARY KEY;

তালিকা ড্ৰপ প্ৰাথমিক কী সলনি কৰক;