What is the difference between SQL and SQL Server?

Not known

Showing Answers 1 - 50 of 50 Answers

vivek

  • Oct 8th, 2005
 

sql is a language but sql-server is a product of microsoft which support sql.

pratap

  • Oct 12th, 2005
 

SQLServer is an RDBMS just like oracle,DB2 from Microsoft

whereas

Structured Query Language (SQL), pronounced "sequel", is a language that provides an interface to relational database systems. It was developed by IBM in the 1970s for use in System R. SQL is a de facto standard, as well as an ISO and ANSI standard. SQL is used to perform various operations on RDBMS

sarala

  • Oct 27th, 2005
 

SQL - Structured Query Language - is an open, vendor-independent,
standardised language for accessing and manipulating data stored in
relational databases. The standards are defined by ANSI.

SQL Server is one of many products that supports and implements the SQL language.

If I write "SELECT SomeField FROM SomeTable" that's a SQL statement. Of course, by itself, simply typed into a text editor, it doesn't do anything. It must be executed by a database engine that understands how to translate the SQL statement into the low-level commands required to retrieve the data from the proprietary database format. SQL Server is one such database engine.

L_testa_L

  • Nov 3rd, 2005
 

SQL is the language

SQL Server is Application that stores the db and processes SQL

  Was this answer useful?  Yes

Parvez

  • Nov 9th, 2005
 

SQL Is a Command Language for communication SQL server takes the command and execute the query

  Was this answer useful?  Yes

High Octane

  • Nov 10th, 2005
 

SQL Server is a product name for micro$ofts relational databaseSQL stands for Structured Query Language and is a set based langauge used to extract and manipulate data in a relational database

  Was this answer useful?  Yes

sanjay

  • Jul 12th, 2011
 

Sql(Structured query Language):
It is a language used to write the queries up on users requirement and used to retrieve the data.
Sql Server:
It is a type of Data Base where data can be retrieve the data using Sql.

  Was this answer useful?  Yes

sandeep

  • Jul 13th, 2011
 

SQL is a language which is used to retrieve and manipulate data in database .... SQL Server is the relational data base management system, a product from Microsoft.

durgaprasad

  • Oct 23rd, 2011
 

ORACLE organises the database of collection data and this data retrieve from sql .So sql is a language but sql-server is a product of Microsoft which support sql.

  Was this answer useful?  Yes

Rakesh Kumar

  • Jun 24th, 2012
 

Sql Server is a (RDBMS) Relation Database Management System where as SQL is Structure Query Language.

  Was this answer useful?  Yes

ramya

  • Sep 1st, 2012
 

sql is a language
sql server is a RDBMS relational database management system.

  Was this answer useful?  Yes

PrashanthMaddur

  • Jun 16th, 2013
 

SQL:- Consists of a data definition language and a data manipulation language. The scope of SQL includes data insert, query, update and delete, schema creation and modification, and data access control............

SQL Server:-
Microsoft SQL Server is a relational database management system developed by Microsoft. As a database, it is a software product whose primary function is to store and retrieve data as requested by other software applications, be it those on the same computer or those running on another computer across a network (including the Internet). There are at least a dozen different editions of Microsoft SQL Server aimed at different audiences and for different workloads (ranging from small applications that store and retrieve data on the same computer, to millions of users and computers that access huge amounts of data from the Internet at the same time).

  Was this answer useful?  Yes

ADINARAYANA REDDY

  • Apr 12th, 2014
 

sql is language and sql server is database like RDBMS,ORACLE

  Was this answer useful?  Yes

ramesh

  • Jul 24th, 2014
 

sql is a language and sql server is database

  Was this answer useful?  Yes

Trupti Das

  • Sep 18th, 2014
 

SQL is a languagae & SQL Server is a database

  Was this answer useful?  Yes

vikash kumar

  • Dec 11th, 2014
 

Sql is a language where we write query to fulfill the user requirements. Sql Server is a product of Microsoft to executes sql query which retrieve data.


Sql is help to write statement and Sql Server is take sql query to retrieve data for user requirement and its interface

  Was this answer useful?  Yes

Sushil Sahni

  • May 19th, 2015
 

Sql is Query language this language used to write only query like create,update,insert etc Sql Server is platform.

  Was this answer useful?  Yes

chandu

  • Jun 24th, 2015
 

SQL:Is a Language which contains queries like->[Insert,Update,Delete,Select]
SQL SERVER:Is a Database like ORACLE,RDBMS Which execute the SQL Queries...

  Was this answer useful?  Yes

yoj

  • May 17th, 2016
 

SQL - is a language used for manipulating data sets, which is commonly used by database management systems like SQL Server, Oracle etc.,
SQL supports following operations,
– Language elements: Clauses, Expressions, Predicates, Queries, Statements.
– Operators: =, , >, =, <=, BETWEEN, LIKE, IN, NOT IN, IS, IS NOT, AS, etc.
– Conditional expressions: CASE, IF ELSE
– Queries: which include SELECT, FROM, WHERE, GROUP BY, HAVING, ORDER BY, etc.
– Data Types: Numeric, Char, Bit, Date and Time
– NULL or 3VL (Three value Logic)
– DDL, DML, TCL

  Was this answer useful?  Yes

qptopm

  • Nov 24th, 2016
 

Sql Server is a Database of Microsoft.

MS SQL SERVER - It is a R-DBMS like oracle, mysql .

where as SQL is structured query language.

which is common in all the Database available with few specific changes.

  Was this answer useful?  Yes

amit

  • Jun 12th, 2017
 

SQL is a command language to perform operations on database. SQL server in the underlying software that will accept the SQL commands given to it to perform the operations in data handled/ stored by server.
e.g. .net is language and Visual studio is software to run it.

  Was this answer useful?  Yes

Abdul Rahman

  • Jul 18th, 2017
 

Sql Server is the Database offering/ product of Microsoft. Examples of other database products are Oracle, MySql, etc. SQL is the query language that is used to handle/ manipulate data in the database (eg insert, select, update, delete, etc). ANSI SQL is defined by ANSI which is independent of Microsoft, Oracle, etc. The same ANSI SQL code should run on all ANSI SQL complient systems whether it be Microsoft Sql Server, Oracle, MySql, etc.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions