Day 15: Window Functions AHK 09:00Day 15: Window Functions 1. What are Window Functions? Window functions perform calculations across a set of rows related to the curren... Read More
Day 14: Common Table Expressions (CTEs) and Recursive Queries AHK 09:00Day 14: Common Table Expressions (CTEs) and Recursive Queries 1. Common Table Expressions (CTEs) A Common Table Expressi... Read More
Day 13: Views, Stored Procedures, and Triggers AHK 09:00Day 13: Views, Stored Procedures, and Triggers 1. Views A view is a virtual table based on a SQL query. It simplifies complex qu... Read More
Day 12: Transactions and Error Handling AHK 09:00Day 12: Transactions and Error Handling 1. What are Transactions? A transaction is a sequence of SQL operations performed as a single logi... Read More
Day 11: Indexes and Performance Optimization AHK 09:00 1. What are Indexes? Indexes improve query performance by allowing the database to find rows more quickly. They act as a data ... Read More
Day 10: Advanced SQL Functions and Window Functions AHK 09:00 Day 10: Advanced SQL Functions and Window Functions 1. Advanced SQL Functions These functions enhance data manipulatio... Read More
Day 9: Subqueries and Common Table Expressions (CTEs) AHK 09:00Day 9: Subqueries and Common Table Expressions (CTEs) 1. Subqueries A subquery is a query nested inside another query. It can be u... Read More
Day 8: Working with Joins AHK 09:00Day 8: Working with Joins 1. INNER JOIN Returns rows with matching values in both tables. ... Read More
Day 7: Grouping Data with GROUP BY and Filtering with HAVING AHK 09:00Day 7: Grouping Data with GROUP BY and Filtering with HAVING 1. Using GROUP BY The GROUP BY statement groups rows shar... Read More
How do I make doctrine support timestamp columns AHK 10:38Problem: [Doctrine\DBAL\DBALException] Unknown column type "timestamp" requested. Any Doctrine type that you use has to be regi... Read More
[6.0] Where is the command app:name? AHK 12:01Problem The app:name command, no longer available in laravel 6.0, there is some way to change the namespaces, as was being done with that co... Read More
Resolved: “Could not store password” for MySQL workbench community + ubuntu AHK 11:33If MySQL Workbench not saving passwords in the keychain In order to resolve Could not store password: An AppArmor policy prevents this sende... Read More
Install MySQL workbench in ubuntu AHK 11:30Install MySQL workbench in ubuntu sudo snap install mysql-workbench-community Run the below command for a password-saving issue sudo snap co... Read More
MySQL: Updating all rows setting a field to 0, but setting one row's field to 1 AHK 12:19 efficient way to update a selection of rows' field to 0, but set One of these rows to 1 based on an ID. UPDATE `table` SET `inuse` = (`... Read More
MySQL in clause string to array AHK 19:33MySQL 5.5.32 Schema Setup: CREATE TABLE LIST(`id` INT, `list` VARCHAR(5)); INSERT INTO LIST(`id`, `list`) VALUES(1, '1,2,3'),(2, ... Read More