SQLite DELETE Query In SQLite, DELETE query is used to delete the existing records from a table. You can use it with…
limit
-
-
SQLite Installation SQLite is known for its zero configuration which means no complex setup or administration is required. Let’s see how to…
-
SQLite Syntax Syntax is a unique set of rules and guidelines. Following is a list of syntax for SQLite. Case sensitivity: SQLite…
-
SQL vs SQLite Differences between SQL and SQLite SQL SQLite SQL is a Structured Query Language used to query a Relational Database…
-
SQLite Detach Database The SQLite DETACH DATABASE statement is used to detach the alias-named database from a database connection which was previously…
-
SQLite Joins In SQLite, JOIN clause is used to combine records from two or more tables in a database. It unites fields…
-
SQLite time Function SQLite time function is used to calculate time and return time in ‘HH-MM-SS’ format. Syntax: time(timestring, [ modifier1, modifier2,…
-
SQLite Advantages SQLite is a very popular database which has been successfully used with on disk file format for desktop applications like…
-
SQLite Julianday Function The SQLite julianday function facilitates you to apply modifiers and then returns the date as a Julian Day after…
-
SQLite Trigger AFTER DELETE It specifies how to create trigger after delete the data. We have two tables COMPANY and AUDIT. COMPANY…