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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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








DELETE


DELETE [LOW_PRIORITY] FROM tbl_name [WHERE where_clause]
[LIMIT rows]

This query deletes all rows from the specified table, unless the optional
(but desirable!) WHERE or LIMIT clauses
are specified. The WHERE clause works the same way as its
twin in the SELECT query (see "SELECT").
The LIMIT clause simply lets you specify the maximum number
of rows to be deleted.

The LOW_PRIORITY option causes the query to wait
until there are no clients reading from the table to perform the operation.

/ 190