PHP MySQL সম্মুখদ্বার

MySQL সবচেয়ে জনপ্রিয় ওপেন সোর্স ড্যাটাবেস সার্ভার

MySQL কি?

MySQL একটি ড্যাটাবেস। ড্যাটাবেস তথ্য স্টোরেজের বিন্যাস নির্দিষ্ট করে。

ড্যাটাবেসে, কিছু টেবিল রয়েছে। HTML টেবিলের মতো, ড্যাটাবেস টেবিলগুলি পয়লা, কলা এবং কোনা ধারণ করে。

তথ্যকে শ্রেণীবদ্ধ রাখার জন্য, ড্যাটাবেস অত্যন্ত সাহায্যকারী। একটি কোম্পানির ড্যাটাবেসে এইসব টেবিল থাকতে পারে: "Employees", "Products", "Customers" এবং "Orders"。

ড্যাটাবেস টেবিল

ড্যাটাবেস সাধারণত একটি বা একাধিক টেবিল ধারণ করে। প্রত্যেক টেবিল একটি নাম (যেমন "Customers" বা "Orders") রাখে। প্রত্যেক টেবিল ডাটা সহ রেকর্ড (পয়লা) ধারণ করে。

এখানে "Persons" নামক একটি টেবিলের একটি উদাহরণ আছে:

LastName FirstName Address City
Hansen Ola Timoteivn 10 Sandnes
Svendson Tove Borgvn 23 Sandnes
Pettersen Kari Storgt 20 Stavanger

উপরোক্ত টেবিলে তিনটি রেকর্ড (প্রত্যেক রেকর্ড একজন ব্যক্তি) এবং চারটি কলাম (LastName, FirstName, Address এবং City) রয়েছে。

Query

A query is a question or request.

Through MySQL, we can query specific information from the database and get the returned record set.

Please see the following query:

SELECT LastName FROM Persons

The above query selects all data from the LastName column in the Persons table and returns a record set similar to this:

LastName
Hansen
Svendson
Pettersen

Download MySQL Database

If your PHP server does not have a MySQL database, you can download MySQL here:http://www.mysql.com/downloads/index.html

Facts About MySQL Database

One very nice feature of MySQL is that it can be scaled to support embedded database applications. Perhaps for this reason, many people think that MySQL can only handle small and medium-sized systems.

In fact, for websites that support large data and traffic, MySQL is actually the standard database (such as Friendster, Yahoo, Google). This address provides an overview of companies using MySQL:http://www.mysql.com/customers/.