Difference between JSON and SQL

They are 2 completely different things.

SQL is used to communicate with databases, usually to Create, Update and Delete data entries.

JSON provides a standardized object notation/structure to talk to web services.

Why standardized?

Because JSON is relatively easy to process both on the front end (with javascript) and the backend. With no-SQL databases becoming the norm, JSON/JSON-like documents/objects are being used in the database as well.


Absolutely not. JSON is the data format in order to pass the data from the sender to the receiver. SQL is the language used by relational databases in order to define data structures and query the information from them. JSON is not associated with any way to store or retrieve the data.


JSON is data markup format. You use it to define what the data is and means. eg: This car is blue, it has 4 seats.

{
    "colour": "blue",
    "seats": 4
}

SQL is a data manipulation language. You use it to define the operations you want to perform on the data. eg: Find me all the green cars. Change all the red cars to blue cars.

select * from cars where colour = 'green'
update cars set colour='blue' where colour='red'

A SQL database is a database that uses SQL to query the data stored within, in whatever format that might be. Other types of databases are available.

Tags:

Sql

Json