Best of MySQLAugust 2024

  1. 1
    Article
    Avatar of communityCommunity Picks·2y

    MySQL Visual Explain

    Investigate slow query performance through a simple visualization tool instead of deciphering MySQL's complex EXPLAIN output. Most developers find EXPLAIN difficult to read because it was designed for internal use by MySQL developers to debug and tune query execution.

  2. 2
    Article
    Avatar of hnHacker News·2y

    ChartDB

    ChartDB is a free and open-source database design editor that simplifies the creation of database diagrams. It allows users to import, edit, and export database schemas using a single query, supporting popular relational DBMS like MySQL, MariaDB, PostgreSQL, Microsoft SQL Server, and SQL Lite. Features include a visual query editor, the ability to add tables and notes, and exporting diagrams as SQL scripts or images.

  3. 3
    Article
    Avatar of alternativetoAlternativeTo·2y

    ServBay 1.4.0 released with MySQL support, enhanced management interfaces, and more

    ServBay 1.4.0 introduces MySQL support (versions 5.1 to 9.0), a new service management interface, graphical configuration options for MySQL, MariaDB, and Redis, and the ability to set MySQL or MariaDB as the default SQL server. The update enhances host configuration with rewrite rules for Laravel and WordPress and supports multiple domains per host. It also adds a one-click Redis cache clear feature, improved login error messages, and updates the ServBay runtime for better stability. Upgrades can be done automatically via the app or manually by downloading the installer.

  4. 4
    Article
    Avatar of communityCommunity Picks·2y

    Create Histogram Charts With MySQL – Tutorial

    Learn how to create histogram charts using MySQL by leveraging the COUNT() function and GROUP BY for time series data analysis. Discover how to fill gaps in the data using recursive common table expressions (CTEs) and explore an alternative code-based solution using Laravel and the Carbon library to ensure comprehensive data representation.

  5. 5
    Article
    Avatar of freekFREEK.DEV·2y

    From MySQL to Typesense: Blazing-Fast Full-Text Search in Laravel

    Discover how to enhance full-text search in your Laravel application from basic LIKE queries to MySQL full-text indexes, and ultimately using Laravel Scout combined with Typesense for a blazing-fast search experience.