Theme-Logo
  •   .Net
    •   C Sharp(C#)
    •   Web API
    •   Micro Services
    •   ASP.Net
    • ASP.Net MVC
    • .Net Core
  •   Database
    • SQL Server
    • Oracle
    • PostgreSQL
  •   jQuery
    • jQuery Tutorials
    • jQuery Plugins
    • jQuery UI
    • More on jquery
  •   Tutorials
    • Microservices Tutorials
    • DotNet Core Tutorials
    • PostgreSql Tutorials

Introduction of SQL Server

Before introducing SQL Server lets discuss on SQL. SQL (Structured Query Language) is a standard language for accessing and manipulating databases. SQL became a standard of the American National Standards Institute (ANSI) in 1986, and of the International Organization for Standardization (ISO) in 1987

So What SQL can do?

  • SQL can execute queries against a database
  • SQL can retrieve data from a database
  • SQL can insert records in a database
  • SQL can update records in a database
  • SQL can delete records from a database
  • SQL can create new databases
  • SQL can create new tables in a database
  • SQL can create stored procedures in a database
  • SQL can create views in a database
  • SQL can set permissions on tables, procedures, and views
  • SQL is standard?

    If you know more than one databases then this question may be flash in your mind that if SQL is standard then why every databases having their own syntaxes? Although SQL is an ANSI/ISO standard, there are different versions of the SQL languages. However, to be compliant with the ANSI standard, they all support at least the major commands (such as SELECT, UPDATE, DELETE, INSERT, WHERE) in a similar manner. So, most of the SQL database programs also have their own proprietary extensions in addition to the SQL standard!

    What is RDBMS

    RDBMS stands for Relational Database Management System. RDBMS is the basis for SQL, and for all modern database systems such as MS SQL Server, IBM DB2, Oracle, MySQL, and Microsoft Access. The data in RDBMS is stored in database objects called tables. A table is a collection of related data entries and it consists of columns and rows.

    SQL Server

    Micosoft SQL Server is a relational database management system (RDBMS) developed by Microsoft. This product is built to achieve basic functionality (mentioned above for SQL) for storing and retrieving data as required by other applications. It can be run either on the same computer or on another across a network (Client-Server).

    ❮ SQL
    SQL Joins ❯

    Other Related Post
    Introduction of SQL Server.
    SQL Server Join.
    SQL Server Null values.
    SQL Server Union and Union All.
    The SQL INSERT INTO SELECT Statement.
    How to find top N salary of employee with different way.
    How to create indexes in sql server table.
    How to improve sql server stored procedure performance.
    Interview Questions and Answers
    What are the steps you will take to improve the performance of a poor performing query?
    What is a deadlock and what is a live lock? How will you go about resolving deadlocks?
    What structure can you implement for the database to speed up table reads?
    Could you please some items which you may see in an execution plan indicating the query is not optimized.
    About us

    DotNet Palace is a community platform created and maintained by The articles are mainly focused on Microsoft stack technologies like C#, ASP.Net, MVC, .Net Core, SQL Server and Oracle, PostgreSQL, SQLite etc. To improve the site's content you can send your valuable suggestions at info.dotnetpalace@gmail.com

    Quick links
  • SOLID Principles
  • Questions
  • OOPS Principles
  • DotNet Palace Tutorials
  • Privacy Policy
  • Terms and Condition