Month: June 2022

3.43 Modifying Existing Columns

3.43 বিদ্যমান স্তম্ভবোৰ সংশোধন কৰা You can change the data type of an existing column by using the ALTER TABLE comma in the format shown below: ALTER TABLE <TableName> MODIFY (<Column Name><New Data Type> (<New Size>): আপুনি তলত দেখুওৱা ফৰ্মেটত অলটাৰ টেবল কমা ব্যৱহাৰ কৰি এটা বিদ্যমান স্তম্ভৰ ডাটা প্ৰকাৰ সলনি কৰিব পাৰে: অলটাৰ টেবল…

Read the full article

3.42. Adding Newb Columns at a specific Location

3.42. এটা নিৰ্দিষ্ট স্থানত নিউব স্তম্ভ যোগ কৰা To Add new columns to the table at specificlo cations in the table structure, the command syntax is: তালিকাৰ গাঁথনিত নিৰ্দিষ্ট ক্যাশনত তালিকাত নতুন স্তম্ভ যোগ দিবলৈ, কমাণ্ড চিনটেক্স হৈছে: AlTER TART (TBLE NAME> ADD<NEW Column Name> Datatype> (sixe>) এল্টাৰ টাৰ্ট (টিবিএল নাম> যোগকৰক<নতুন স্তম্ভৰ নাম> ডাটাটাইপ>…

Read the full article

3.4.1 Creating New Columns

3.4.1 নতুন স্তম্ভ সৃষ্টি কৰা The syntax for creating a new column in a table is; ALTER TABLE <Table Name> ADD (<New Column Name><Data Type> (<size>), <New Column Name><Data Type> (<size>), ….); টেবল এখনত নতুন স্তম্ভ এটা সৃষ্টি কৰাৰ বাবে বাক্যবিন্যাস হৈছে; তালিকা <তালিকাৰ নামসলনি কৰক> যোগ কৰক (<নতুন স্তম্ভৰ নাম><ডাটা প্ৰকাৰ> (), <নতুন স্তম্ভৰ…

Read the full article

3.4 CHANGING THE STRUCTURE OF A TABLE

3.4 এখন তালিকাৰ গাঁথনি সলনি কৰা The ALTER TABLE command is used to modify the structure of an existing table. With this command, you can: এটা বিদ্যমান তালিকাৰ গাঁথনি সংশোধন কৰিবলৈ অলটাৰ টেবল কমাণ্ড ব্যৱহাৰ কৰা হয়। এই আদেশৰ দ্বাৰা, আপুনি কৰিব পাৰে: add or delete columns স্তম্ভযোগ কৰক বা বিলোপ কৰক change the data…

Read the full article