SQL - Database Tunning Mindsforest 07:08:00 Add Comment Edit It takes time to become a Database Expert or an expert Database Administrator. This all comes with lot of experience in various database d... Read More
SQL - Injection Mindsforest 07:08:00 Add Comment Edit If you take user input through a webpage and insert it into a SQL database, there's a chance that you have left yourself wide open for... Read More
SQL - Handling Duplicates Mindsforest 07:07:00 Add Comment Edit There may be a situation when you have multiple duplicate records in a table. While fetching such records, it makes more sense to fetch on... Read More
SQL - Using Sequences Mindsforest 07:07:00 Add Comment Edit A sequence is a set of integers 1, 2, 3, ... that are generated in order on demand. Sequences are frequently used in databases because man... Read More
SQL - Sub Queries Mindsforest 07:07:00 Add Comment Edit A Subquery or Inner query or Nested query is a query within another SQL query and embedded within the WHERE clause. A subquery is used t... Read More