SQL সংক্ষিপ্ত বর্ণনা

SQL হল ডাটাবেস পরিবেশন এবং প্রক্রিয়াকরণের জন্য একটি স্ট্যান্ডার্ড কম্পিউটার ভাষা

কি হল SQL?

  • SQL হল স্ট্রাকচার্ড কোয়েরি ভাষা
  • SQL আমাদের ডাটাবেস পরিবেশন করার সক্ষমতা দেয়
  • SQL একটি ANSI স্ট্যান্ডার্ড কম্পিউটার ভাষা

লেখকের মন্তব্য:ANSI, মার্কিন যুক্তরাষ্ট্র জাতীয় প্রমাণন সংস্থা

SQL কী করতে পারে?

  • SQL ডাটাবেসের জন্য কোয়েরি এক্সিকিউট করে
  • SQL can retrieve data from the database
  • SQL can insert new records into the database
  • SQL can update data in the database
  • SQL can delete records from the database
  • SQL can create new databases
  • SQL can create new tables in the database
  • SQL can create stored procedures in the database
  • SQL can create views in the database
  • SQL can set permissions for tables, stored procedures, and views

SQL is a standard - but...

SQL is an ANSI standard computer language used to access and operate database systems. SQL statements are used to retrieve and update data in the database. SQL can work with database programs such as MS Access, DB2, Informix, MS SQL Server, Oracle, Sybase, and other database systems.

Unfortunately, there are many different versions of the SQL language, but in order to be compatible with the ANSI standard, they must support some main keywords in a similar way (such as SELECT, UPDATE, DELETE, INSERT, WHERE, etc.).

Note:In addition to the SQL standard, most SQL database programs have their own private extensions!

Using SQL on your website

To create a website that publishes data from a publication database, you need the following elements:

  • RDBMS database programs (such as MS Access, SQL Server, MySQL)
  • Server-side scripting languages (such as PHP or ASP)
  • SQL
  • HTML / CSS

RDBMS

RDBMS refers to the relational database management system.

RDBMS is the foundation of SQL, and also the foundation of all modern database systems, such as MS SQL Server, IBM DB2, Oracle, MySQL, and Microsoft Access.

Data in RDBMS is stored in database objects called tables (tables).

A table is a collection of related data items, consisting of columns and rows.