Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8222047
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T14:08:33+00:00 2026-06-07T14:08:33+00:00

I am trying to run this: $stmt=$cxn->prepare(UPDATE table1 SET used=’1′ WHERE prim_id != (SELECT

  • 0

I am trying to run this:

$stmt=$cxn->prepare("UPDATE table1 SET used='1' WHERE prim_id != 
     (SELECT MAX(prim_id) FROM table1 WHERE email='email12345@gmail.com')");
$stmt->execute(array());

But it results in a MySQL error: #1093 - You can't specify target table 'table1' for update in FROM clause.

After searching this error, it seems that In MySQL, you can't modify the same table which you use in the SELECT part..

How can I change that query to make it work?

Thanks a lot in advance

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T14:08:35+00:00Added an answer on June 7, 2026 at 2:08 pm

    Try this:

    UPDATE table1 t1, (SELECT MAX(prim_id) AS max_prim_id
                         FROM table1 WHERE email='email12345@gmail.com') tmp
    SET t1.used='1'
    WHERE t1.prim_id != tmp.max_prim_id
    AND t1.`email` = 'email12345@gmail.com'
    

    It removes the subquery and uses a regular temporary table to store the result of table “tmp”.
    The query takes 2 tables for update:

    • table1 (with the alias t1)
    • a temporary table (with the alias tmp)

    The WHERE clause:

    • indicates how the two tables are joined
    • restricts the records to consider in table t1

    The SET clause says that only t1.used will be updated.

    UPDATE statement

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to run this command from the shell: sqlite3 salesShare1.db select UsersSale.saleSpecificProduct, UsersSale.fAtMall,
I'm trying to run this regular expression [\s]+(<)|(>)[\s]+ dim myRegExp as object Set myRegExp
I'm trying to run this query: select * from activity where id = 9348927
I'm trying to run this simple query over a JDBC connection: select _fk_DeptBillTo from
I'm trying to run this command through KennethReitz's Envoy package: $ sqlite3 foo.db 'select
i was trying to run this query: ( (SELECT * FROM (SELECT * FROM
I'm trying to run this code but this error appear: Uncaught TypeError: string is
I'm trying to run this script that basically reads/interprets text in from a textfile
Currently I'm trying to run this powershell script: Param ( $websiteName, $physicalPath ) import-module
I am trying to run this tutorial i did not implement the validation part

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.