Build Your Own DatabaseDriven Website Using PHP amp;amp; MySQL [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Build Your Own DatabaseDriven Website Using PHP amp;amp; MySQL [Electronic resources] - نسخه متنی

Kevin Yank

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید








EXPLAIN


The explain query has two very different forms. The first,

EXPLAIN tbl_name
is
equivalent to DESCRIBE tbl_name or SHOW COLUMNS
FROM tbl_name
.

The second format,

EXPLAIN select_satement
where select_statement can be any valid SELECT query, will produce
an explanation of how MySQL would determine the results of the SELECT statement.
This query is useful for finding out where indexes will help speed up your SELECT queries,
and also to determine if MySQL is performing multi-table queries in optimal
order. See the STRAIGHT_JOIN option of the SELECT query
in "SELECT" for information on how to override the MySQL optimizer,
and control this order manually. See the MySQL
Reference Manual
for complete information on how to interpret the
results of an EXPLAIN query.

/ 190