SQL Server Management Studio (SSMS) is a graphical user interface (GUI) that can be used to administer SQL Server.

SQL Server Management Studio allows you to create and manage your databases as well as administer your SQL Server configuration.
SQL Server Management Studio (SSMS) is a graphical user interface (GUI) that can be used to administer SQL Server.
SQL Server Management Studio allows you to create and manage your databases as well as administer your SQL Server configuration.
In the world of databases, a view is a query that’s stored on a database.
The term can also be used to refer to the result set of a stored query.
To create a view, you write a query, then save it as a view.
To run a view, you query it, just like you’d query a table. The difference is that, the view itself is a query. So when you query the view, you’re effectively querying a query.  This enables you to save complex queries as views, then run simple queries against those views.
A stored procedure is a series of SQL statements compiled and saved to the database.
Stored procedures can be as simple or as complex as you like. However, one of the benefits of stored procedures is that they allow you to store complex scripts on the server.
Stored procedures often contain conditional programming such as IF... ELSE
statements for example. Stored procedures can also accept parameters.
RDBMS stands for Relational Database Management System.
An RDBMS is a particular type of DBMS that uses a relational model for its databases. An RDBMS therefore enables you to create relational databases.
Relational database management systems have become the most popular type of database system. Most major database management systems are relational. Popular examples include Microsoft Access, SQL Server, Oracle Database, MySQL, FileMaker, PostgreSQL, and more below.