Community
Articles Topics Q&A
Learn
Course Programming Dictionary
Tools Library
Development tools Website Source Code PHP Libraries JS special effects Website Materials Extension plug-ins
Leisure
Game Download Game Tutorials
search
English
简体中文 English 繁体中文 日本語 한국어 Melayu Français Deutsch
Login
singup

  • Popular searches:
  • PHP
  • MySQL
  • jquery
  • HTML
  • CSS
  • Whole station
  • Course
  • Article
  • Q&A
  • Download
Found a total of 10000 related content
PHP query development tutorial

Course Advanced  10205

Course Introduction:In this era of data explosion, how can we find what we want in the vast amount of data? How is this achieved? Next, you can learn PHP's fuzzy query technology together.

Python develops word query system

Course Intermediate  18756

Course Introduction:Python is a computer programming language and a dynamic, object-oriented scripting language. It was originally designed for writing automated scripts (shell). This course will lead you to manually develop a word query system from scratch using python3.6

PHP fuzzy query technology video tutorial

Course Advanced  21262

Course Introduction:In this era of data explosion, how can we find what we want in the vast amount of data? How is this achieved? Next, you can learn PHP's fuzzy query technology together.

MySQL query optimization solution [taught by architects from major manufacturers] [Getting Started with MySQL | Tuning | Indexing] Advanced Tutorial

Course Intermediate  6910

Course Introduction:How to tune SQL according to execution plan under massive data? How does the mysql index system cope with massive data storage? How to design a mysql index with excellent performance under massive data Full analysis of clustered index and non-clustered index of mysql Must-ask nouns in mysql index interview: table return, index coverage, leftmost matching How to optimize indexes for specific SQL scenarios

SQL optimization and troubleshooting (MySQL version)

Course Intermediate  4549

Course Introduction:MySQL installation and configuration under Linux, database logical layering, parsing process, index, detailed analysis of SQL execution plan, principles to avoid index failure, optimization cases, common optimization strategies, slow SQL troubleshooting, simulation of massive data, lock mechanism, MySQL under windows and linux Master-slave replication.

More courses
  • Convert a mysql query to its equivalent Knex query

    I'm trying to convert my mysql query to its equivalent Knex query This is the query create table test(idINTUNSIGNEDNOTNULLAUTO_INCRMENT,nameVARCHAR(100),unique(id))AUTO_INCRMENT=1001; So basically I want to create a table that contains A column called "id" whose type is autoincrement and whose values ​​start at 1001. I want it's equivalent to the Knex query. Tried browsing the documentation but couldn't get much help.

    2024-02-26 19:06:08 0  1  314

  • Crosstab query in PHP and MYSQL

    I was looking for a way to implement a crosstab query in MySQL and found the answer from this post: Display dates in rows as dynamic columns in MySQL. I tried the query and got it to work, but how do I write the query in PHP using MySQL procedural style. Here is the query: SELECTGROUP_CONCAT(DISTINCTCONCAT('MAX(IF(`week_start`="',`week_start`,'",`weekly_value`,

    2024-04-02 22:34:20 0  1  632

  • Mysql slow query log content viewing problem

    The slow query log is enabled in mysql, but I often see such a query in the log. I don’t know what it means. In addition, my current query is not recorded in the slow query, but a lot of show status is recorded. Class log. The meaning of the following log: {code...} Why...

    2017-06-28 09:23:21 0  2  979

  • Mysql query returns too slowly

    I have written a query. It works better. But currently, all tables have 100K rows, and one of my queries is returning too slowly. Can you suggest me how to optimize my query? select*fromtbl_xray_informationXWHERElocationCode=(SELECTt.idfromtbl_locationtwhereCODE='202')AND(communicate_with_ptisNULL||communicate_with

    2024-03-30 18:25:44 0  1  479

  • phpstudy linux version How to open and query the built-in mysql running log?

    phpstudy linux version How to open and query the built-in mysql running log? phpstudy linux version How to open and query the built-in mysql running log? phpstudy linux version How to open and query the built-in mysql running log? phpstudy linux version How to open and query the built-in mysql running log? phpstudy linux version How to open and query the built-in mysql running log? phpstudy l

    2018-12-01 08:54:56 0  1  1285

MoreQ&A
mysql query order

Course Introduction:MySQL is a very popular relational database used for managing and storing large data sets. In MySQL, query is a very common operation, and the order of query statements is also very important. If you want to understand how the order of MySQL query statements works, this article will provide you with some knowledge about it. In MySQL, the order of query statements is usually executed in the following way: 1. FROM clause: This clause is used to specify the data source of the query. When executing a query statement, MySQL will first retrieve the queried table or view

2023-05-23 comment 0  2008

Why are MySQL \'IN\' Queries with Subqueries So Slow?

Course Introduction:MySQL "IN" Queries: Subquery Dilemma vs. Explicit Value EfficiencyIn a MySQL query, leveraging the "IN" operator with a subquery may result in...

2024-10-31 comment 0  536

mysql query slow log

Course Introduction:MySQL is a commonly used relational database management system with good performance and scalability in large-scale data processing. Query is one of the most frequently used operations. However, when processing large amounts of data, queries may run slowly for various reasons, affecting system performance. In this case, you need to use MySQL's slow query log to identify and optimize query performance issues. This article will introduce in detail the basic knowledge and application of MySQL slow log query. 1. What is MySQL query slow log? MySQL query slow log is MySQL’s own performance analysis.

2023-05-14 comment 0  5145

MySQL查询优化--查询优化器(1)_MySQL

Course Introduction:当你提交一个查询的时候,MySQL会分析它,看是否可以做一些优化使处理该查询的速度更快。这一部分将介绍查询优化器是如何工作的。如果你想知道MySQL采用的优化手段,可以查看MySQL参考手册。 当然,MySQL查询优化器也利用了索引,但是它也使用了其它一些信息。例如,如

2016-06-01 comment 0  876

mysql slow query enabled

Course Introduction:MySQL is a very popular relational database management system that is widely used, especially in the field of web development. However, if slow queries occur in MySQL, it will seriously affect the performance of the database. In order to solve this problem, we need to enable MySQL's slow query function. This article will introduce how to enable slow query in MySQL and configure the corresponding parameters to optimize query performance. 1. What is slow query? In MySQL, if the execution of a SQL query statement takes more than one

2023-05-14 comment 0  3164

MoreTechnical Articles

Public welfare online PHP training,Help PHP learners grow quickly!

About us Disclaimer Sitemap

© php.cn All rights reserved