Skip to main content

Posts

Showing posts with the label sql

SQL v/s SQLite

  Source SQL (Structured Query Language) plays a pivotal role in data analysis. The main purpose to create SQL is to help in managing data stored in Relational Database Management System (RDBMS). In elementary terms, it is the language that is used to interact with the database. You must be aware of the RDBMS which uses SQL extensively such as Microsoft SQL Server, Access, Oracle. SQL and SQL lite both follow the RDBMS model. Let's check out where these two differ. So let's understand what is SQLite ? SQLite act as a library for software. As compared to SQL it does not require any server to function. Generally, RDBMS requires a server to function. SQLite functions by combining the database to the application. The application help in interacting with the database. There is this term " self-contained " which is associated with SQLite which means it can operate on its own without the support of the operating system. This feature is the highlight of SQLite and makes it av