Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

27
votes
2answers
5k views

How do I update if exists, insert if not (aka upsert or merge) in MySQL?

Is there an easy way to INSERT an row when not exists, or to UPDATE if it exists, using one MySQL query?
18
votes
7answers
7k views

Is there a way to do an “INSERT…ON DUPLICATE KEY UDPATE” in Zend Framework?

I would like to use ON DUPLICATE KEY UPDATE in Zend Framework, is this possible? Example INSERT INTO sometable (...) VALUES (...) ON DUPLICATE KEY UPDATE ...
14
votes
1answer
3k views

INSERT INTO … SELECT FROM … ON DUPLICATE KEY UPDATE

I'm doing an insert query where most of many columns would need to be updated to the new values if a unique key already existed. It goes something like this: INSERT INTO lee(exp_id, created_by, ...
8
votes
2answers
7k views

Does DB2 have an “insert or update” statement?

From my code (Java) I want to ensure that a row exists in the database (DB2) after my code is executed. My code now does a select and if no result is returned it does an insert. I really don't like ...
7
votes
2answers
216 views

How does this SQL query to update a row if exists, or insert if not, work?

I'm working with some code. There are several queries whose effect is, if the row exists with some of the data filled in, then that row is updated with the rest of the data, and if the row does not ...
6
votes
2answers
133 views

Linq2Sql - attempting to update but the Set statement in sql is empty

This is weird ... done updates loads of times before but cannot spot why this is different. although I am using .net 4.0 now - however i doubt its a bug in its L2S implementation. Its not like this is ...
5
votes
3answers
607 views

Why are 2 rows affected in my `INSERT … ON DUPLICATE KEY UPDATE`?

I'm doing an INSERT ... ON DUPLICATE KEY UPDATE for a PRIMARY KEY in the following table: mysql> describe users_interests; ...
5
votes
4answers
3k views

How to insert JPEG into a SQL Server 2000 database field of image type using Transact SQL

I'm trying to figure out how to insert a .JPG file into a SQL Server 2000 database field of type image using Transact SQL. Thanks.
4
votes
2answers
365 views

How do you work with Entity relationship within Doctrine 2?

When you want to insert an Entity you do this: $user = new User(); $user->setEmail('john@doe.com'); $em->persist($user); $em->flush(); But what if I want to create an article which can ...
4
votes
4answers
4k views

SQL Server insert if not exists best practice

I have a Competitions results table which holds team member's names and their ranking on one hand. On the other hand I need to maintain a table of unique competitors names: CREATE TABLE Competitors ...
4
votes
3answers
586 views

T-SQL Insert or update

I have a question regarding performance of Sql Server. Suppose I have a table persons with the following columns: (id, name, surname). Now, I want to insert a new row in this table. The rule is the ...
4
votes
1answer
322 views

how to know if last operation was insert or update when using insert on duplicate update in mysql and php?

I am using PHP and MySQL. If I use an INSERT ON DUPLICATE UPDATE SQL statement, then how do I know if the last operation was an successful insert and not an update or unsuccessful insert? The ...
4
votes
5answers
13k views

How do I Insert or Update (or overwrite) a record using NHibernate?

I need to write a row to the database regardless of whether it already exists or not. Before using NHibernate this was done with a stored procedure. The procedure would attempt an update and if no ...
4
votes
5answers
706 views

SQL - Table Design - DateCreated and DateUpdated columns

For my application there are several entity classes, User, Customer, Post, and so on I'm about to design the database and I want to store the date when the entities were created and updated. This is ...
3
votes
2answers
66 views

SQL Statement for Reconciliation

Given the schema below: create table TBL1 (ID varchar2(100) primary key not null, MATCH_CRITERIA varchar2(100)); create table TBL2 (ID varchar2(100) primary key not null, MATCH_CRITERIA ...
3
votes
2answers
556 views

Django - save() update on duplicate key

I have little application which allows a user to rate a video. The user can rate only once. So I have defined the uniqueness on the model. But he should be able change his rate. So the save() should ...
3
votes
4answers
464 views

JDBC insert or update practice

I need to insert a record to table if the record doesn't exist, and to update a record if the record exists in the table. Of course, I can write: p-code: SELECT * FROM table1 WHERE id='abc' by JDBC ...
3
votes
3answers
245 views

Update if record already exists for todays date

Is there is an easy way to change the following query to check to see if a record already exists for todays date if it does to update it with the newest count value. mysql_query("INSERT INTO ...
3
votes
2answers
293 views

UPDATE record if present; else INSERT

I want to update a record which may or may not be present in a table. If it is not present in the database then it will be inserted. To prevent from select I am using UPDATE statement first and ...
3
votes
1answer
123 views

How to get the original value of changed fields?

I'm using sqlalchemy as my orm, and use declarative as Base. Base = declarative_base() class User(Base): __tablename__ = 'users' id = Column(Integer, primary_key=True) name = ...
3
votes
2answers
686 views

Oracle - UPSERT with update not executed for unmodified values

I'm using following update or insert Oracle statement at the moment: BEGIN UPDATE DSMS SET SURNAME = :SURNAME WHERE DSM = :DSM; IF (SQL%ROWCOUNT = 0) THEN INSERT INTO DSMS (DSM, ...
3
votes
2answers
302 views

Ways to update a dependent table in the same MySQL transaction?

I need to update two tables inside a single transaction. The individual queries look something like this: 1. INSERT INTO t1 (col1, col2) VALUES (val1, val2) ON DUPLICATE KEY UPDATE ...
2
votes
2answers
73 views

Batch insert return identity and object reference/sequence

With SQL Server 2K8 from C# I'm trying to do a batch insert/updates of records to a parent/child tables to optimize. The inserts/updates will generate a key automatically which I'd like to extract ...
2
votes
1answer
269 views

Rails Migration Update existing records while creating entries in another table

I am trying to set up Beta Invites for my Rails application. I have an Invitation model and a User model. User has one invitation_id. I am validating that user must have an invitation_id and it ...
2
votes
1answer
424 views

MySQL INSERT … SELECT… ON DUPLICATE KEY UPDATE increment

I am having some problems with a INSERT SELECT ON DUPLICATE KEY UPDATE query. I want to to perform actions such as increment of a field in the table being inserted on for each of the rows returned by ...
2
votes
1answer
587 views

Insert HTML data into the SQL Server

I have a problem about inserting HTML data into SQL Server. here are the details: this is my stored procedure; @articleID int, @articleBody nvarchar(max) AS UPDATE v2_Articles SET articleBody = ...
2
votes
2answers
476 views

In MySQL, how do I insert only when row doesn't exist and update only when existing version is less

I am looking for a way to only insert when the row does not exist in MySQL, and update when the row exists AND the version of the existing row is less than (or equal to) the version of the new row. ...
2
votes
4answers
276 views

Converting INSERT commands to UPDATE

I have two INSERT commands, that are useless to me like that because the two sets of rows - the ones that are already in the table, and the ones I have as INSERT commands - are not disjunct. Both ...
2
votes
2answers
331 views

Update the value of a field in database by 1 using codeigniter

I want to implement a SQL statement using codeigniter active record. UPDATE tags SET usage = usage+1 WHERE tag="java"; How can I implement this using Codeigniter active records? Regards
2
votes
3answers
80 views

mySQL: Knowing when to UPDATE and when to INSERT?

I'm still quite a mySQL newbie, so I would like to do this right to avoid future mishaps. What is the right way to detect when do I need to UPDATE an entry in a table or INSERT a new one? Thank you. ...
2
votes
3answers
2k views

Entity Framework - Insert with foreign key

Apologies if there is clear answer for this somewhere. But I can't insert into a simple table due to it containing a foreign key. Task Table TaskId (PK) Description StatusId (FK) Into which I try ...
2
votes
1answer
2k views

Create new or update existing entity at one go with JPA

A have a JPA entity that has timestamp field and is distinguished by a complex identifier field. What I need is to update timestamp in an entity that has already been stored, otherwise create and ...
2
votes
1answer
1k views

Insert binary std::string using ODBC into BLOB column

can somebody give me an example how to insert binary std::string using ODBC and C++ into BLOB column, please? EDIT: Duplicate of How to INSERT binary std::string into BLOB (MySQL).
1
vote
5answers
90 views

How generate next id number for php mysql driven database

I have a table employees which contains the details of employees in a firm. Each one assigned a unique serial number. Whenever we add a new employee, it should display a serial number in adding ...
1
vote
3answers
70 views

How do I force an INSERT into a table with a unique key if it's already in the table?

I have a table: CREATE TABLE Students (studentId TEXT PRIMARY KEY, name TEXT); I want to insert records into the table, if I insert a student twice I want the second insert to override(update) the ...
1
vote
2answers
51 views

Can I have two different insert triggers on the same table?

They seem to be allowed as I can see both my insert triggers listed under the table with different names. Is it common or a bad practice? I am using SQL Server 2005
1
vote
2answers
73 views

How can I Insert or Update a row with a value returned from a sub-query?

EDIT: Looking for help from J. Leffler, Cheese Con Queso or anyone who knows Informix-SE well. Informix-SE 4.11: I have a table called 'cuadre' which is used to reconcile the cash drawer at the end ...
1
vote
1answer
58 views

Why is EF not persisting the new value?

Question: Why is this code not persisting the new Summary value to the database? Let me know if I've omitted any surrounding/relevant code. Details: I have very little hands-on experience with EF, ...
1
vote
4answers
55 views

How can I insert a row if it doesn't already exist while updating multiple rows?

I have a MySQL query that looks like this: UPDATE `Table` SET `Column` = CASE WHEN `Option Id` = '1' THEN 'Apple' WHEN `Option Id` = '2' THEN 'Banana' WHEN `Option Id` = '3' ...
1
vote
1answer
69 views

mysql, how to make 'insert on duplicate key update' store prev. values?

Why for table like this: create table tbl ( id int not null auto_increment, key1 int not null, key2 int not null, value0 double, value1 double, key(id), unique(key1,key2) ...
1
vote
2answers
122 views

How to upsert two database tables with one SQL statement?

There are two database tables described in the following. The asterisk highlights the primary keys. +----------------+ +----------------+ | posts | | url_references | ...
1
vote
1answer
127 views

sql same column value for all rows and update it frequently

What I want to achieve: I have a table denoting ID and Credits of each individual ID. I want to rate each ID as, rate(ID)=Credit(ID)/sum(Credit(ID)) the sum is over all IDs I will be updating the ...
1
vote
1answer
39 views

Access behaviour - it wants to update records, I want it to insert new ones, track old ones via timestamp

I am designing a database where I wish to track changes in my tables, in this case the "person" table, such that what appears in my Access user interface to be an edit to a person record, actually ...
1
vote
2answers
390 views

Primary key value after insertion of row in SQL Server 2005

In SQL Server 2005 I am inserting a row into a table using a stored procedure and I want to fetch the new primary key value just after inserting that row. I am using following approach to get ...
1
vote
3answers
57 views

Update mysql column

A simple mySql question for all you experts: I have a table table1 with three columns and a bunch of rows: [key_col|col_a|col_b] I want to update col_a with a set of values (ie leaving col_b ...
1
vote
0answers
147 views

Insert Error: Column name or number of supplied values does not match table definition

Public Sub SaveRec() 'On Error Resume Next Dim Chk As Integer Dim chkD As Integer If txtname.Text = "" Then Msg "Must provide News Agency Name....", vbCritical txtname.SetFocus Exit Sub ...
1
vote
1answer
554 views

how can i alter table in sqlite database through the obj c methods in iphone project

hii every one I need to add one column to my existing table so how can i alter table in sqlite database through the obj c ,i am using the following code for inserting data into table in the same way ...
1
vote
4answers
130 views

PHP Update Data in mySQL Inconsistant, only UPDATES sometimes

I have values which use the GET method to send URL variables to a PHP page using Ajax. On the page, I have: $value=$_GET["q"]; $id=$_GET["id"]; $mod=$_GET["mod"]; I started out using the UPDATE ...
1
vote
1answer
257 views

NHibernate: Insert entity with identity value set on a different column

Is it possible with NHibernate and Sql Server to insert an entity and set one of the column values to the newly generated identity? In pure sql I can do it by adding the default value Create the ...
1
vote
1answer
182 views

mysql copy some rows and update one column

i read the question with a similar title but it doesn't match my problem. I have this table Robot_Minions id | type | id_robot_master 1 | catbot | 15 2 | dogbot | 15 3 | batbot | 15 What I ...

1 2 3