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

  • SEARCH
  • Home
  • 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 6978353
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T17:44:41+00:00 2026-05-27T17:44:41+00:00

I want to make an insert with a calculated field in doctrine. If I

  • 0

I want to make an insert with a calculated field in doctrine. If I would do it with SQL it would look like:

INSERT INTO "TableX" 
        (   "ID_Special", 
            "Name"
        )
VALUES  (   (select MAX(ID_Special) + 1 from "TableX"),
            "blabla"
        )

“ID_Special” should be an autoinc-Value without beeing unique. So there are other INSERT’s made on “TableX” that insert an already existing “ID_Special”.

Now I am going the following way:

$qb = $em->createQueryBuilder();
$qb->select('MAX(r.ID_Special)')->from('TableX', 'r');
$nextIDSpecial = $qb->getQuery()->getSingleScalarResult();
...
$dataset = new TableX();
$dataset->setIDSpecial($nextIDSpecial);
$dataset->setName('blabla');
$em->persist($dataset);
$em->flush();

But this might run into problems, if I have multiuser access.

Is there a way to create the first shown SQL-statement with DQL?

Or is there a way to make my second approach atomar?

  • 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-05-27T17:44:42+00:00Added an answer on May 27, 2026 at 5:44 pm

    The best way I found until now: I created a table named “IDSpecialGenerator” with only one column of type integer, pk, not null and autoinc. Everytime I want to insert a dataset into “TableX” with a new “ID_Special” I first have to make an insert into “IDSpecialGenerator”. So my database makes the calculation, I have no problems with multiuseraccess and I not have to use native SQL.

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

Sidebar

Related Questions

I want make sql query which will insert values from one table to another
I want to insert multiple values into a row, but I want to make
I want to insert widgets into my ItemsControl and make them resizeable. How do
I want to make many inserts in a single SQL statement, pretty much like
I want to make simple java program that will insert some text into current
I'm using SQLite database. I want make an insert and get the field ID
I want to make Insert SQL Statement in Delphi using BDE Paradox which is
I just want to make SELECT/INSERT into a remote database, I think it should
I want to make a trigger in ms sql server which saves every insert,update
here is myproblem, i want to make a php function to insert some random

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.