Month: June 2022

3.2.3 Removing a Database

3.2.3 Removing a Database Removing the database means to delete the database physically. The entire data and all related objects inside the database are deleted permanently and this cannot be undone. Therefore, you must delete a database with due care. ডাটাবেচ আঁতৰ োৱাৰ অৰ্থ হৈছে ডাটাবেচটো শাৰীৰিকভাৱে বিলোপ কৰা। ডাটাবেছৰ ভিতৰৰ সমগ্ৰ ডাটা আৰু সকলো…

Read the full article

3.2.2 Selecting a Database For Work

3.2.2 কামৰ বাবে ডাটাবেচ বাছনি কৰা To select a database you want to work with, the query syntax is : আপুনি কাম কৰিব বিচৰা ডাটাবেচ এটা বাছনি কৰিবলৈ, কুৱেৰী চিনটেক্স হৈছে: USE database name; ডাটাবেচ নাম ব্যৱহাৰ কৰক; As we are working with the SCHOOL database here, the actual query will be যিহেতু আমি ইয়াত…

Read the full article

3.2.1 Creating a Database

3.2.1 ডাটাবেচ এটা সৃষ্টি কৰা To create a new database in MySQL, the query is: CREATE DATABASE (IF NOT EXISTS] database name; মাইএছকিউএল-ত এটা নতুন ডাটাবেচ সৃষ্টি কৰিবলৈ, প্ৰশ্নটো হৈছে: ডাটাবেচ সৃষ্টি কৰক (যদি অস্তিত্ব নাই)ডাটাবেচ নাম; 1. The database name is the name of the database you want to create. The name should be…

Read the full article

3.2 STARTING MYSQL

3.2 মাইএচকিউএল আৰম্ভ কৰা After installing the database from the given link, you can start working with it in the following manner: প্ৰদত্ত লিংকৰ পৰা ডাটাবেচ ইনষ্টল কৰাৰ পিছত, আপুনি ইয়াৰ সৈতে নিম্নলিখিত ধৰণে কাম কৰা আৰম্ভ কৰিব পাৰে: 1. Click Start > MySQL5.6 Command Line Client (Fig. 3.1). মাইএছকিউএল5.6 কমাণ্ড লাইন ক্লায়েণ্টৰ > আৰম্ভ…

Read the full article