The sql-update tag has no wiki summary.
17
votes
3answers
13k views
UPDATE multiple tables in MySQL using LEFT JOIN
I have two tables, and want to update fields in T1 for all rows in a LEFT JOIN.
For an easy example, update all rows of the following result-set:
SELECT T1.* FROM T1 LEFT JOIN T2 ON T1.id = ...
14
votes
1answer
15k views
Number of rows affected by an UPDATE in PL/SQL
I have a PL/SQL function (running on Oracle 10g) in which I update some rows. Is there a way to find out how many rows were affected by the UPDATE? When executing the query manually it tells me how ...
8
votes
2answers
363 views
Extremely slow UPDATE query
I noticed that a script of mine became very slow, then I narrowed down to the problem: it was an Update query. The weird thing is that the SELECT query is very fast. The table has about 600,000 ...
7
votes
1answer
547 views
UPDATE-no-op in SQL MERGE statement
I have a table with some persistent data in it. Now when I query it, I also have a pretty complex CTE which computes the values required for the result and I need to insert missing rows into the ...
6
votes
3answers
119 views
Update with function called once for each row in Postgres 8.4
I have the following UPDATE statement:
update mytable
set a = first_part(genid()),
b = second_part(genid()),
c = third_path(genid())
where package_id = 10;
In this example the ...
6
votes
3answers
231 views
Update with sub select - How to handle NULL values?
I'm trying an update with a conditional sub-select which could return null...
UPDATE
aTable SET
aColumn =
(
SELECT TOP 1
CASE
WHEN bTable.someColumn = 1 THEN ...
6
votes
2answers
1k views
Oracle: Updating a table column using ROWNUM in conjunction with ORDER BY clause
I want to populate a table column with a running integer number, so I'm thinking of using ROWNUM. However, I need to populate it based on the order of other columns, something like ORDER BY column1, ...
5
votes
3answers
554 views
android.database.sqlite.SQLiteDatabase.rawQuery() is not updating a DATETIME column with a SQLite datetime() function
public Cursor set_datetime_next(Reminder r) {
String _newVal = "datetime('now', '+7 days')";
String[] args = { new Integer(r.getID()).toString() };
String query =
"UPDATE " ...
5
votes
3answers
4k views
MySQL UPDATE and SELECT in one pass
I have a MySQL table of tasks to perform, each row having parameters for a single task.
There are many worker apps (possibly on different machines), performing tasks in a loop.
The apps access the ...
4
votes
1answer
73 views
Keep getting 'cursor is READ-ONLY'
My code seems pretty forward.
I want to update a specific field with a unique counter, not equal {1,2,3,...}.
I keep getting the error 'The cursor is READ ONLY.'
Also: is there a simpler way?
...
4
votes
1answer
92 views
Insufficient privileges on an update join
Scenario: We generate records for requests to be approved by a manager. While pending, the manager changes (updated overnight from HR feeds). We need to update the requests to indicate the new ...
4
votes
2answers
862 views
SQL Stored Procedure: If variable is not null, update statement
I have an update statement in a stored procedure that looks generally like this:
Update [TABLE_NAME]
Set XYZ=@ABC
Is there a good way to only trigger the update statement if the variable is not ...
4
votes
2answers
395 views
Entity Framework UPDATE Operation - Why is child record updated first?
Background: i have a 1 to 0..1 relationship between User and UserSettings.
The important part of the model is as follows:
public class User
{
public int UserId { get; set; }
public string Name ...
4
votes
1answer
180 views
How can I use a trigger to update a different table in MySQL?
I have two MySQL tables. A votes table (id, userId, postId, voteTypeId), and a posts table (id, postTypeId, userId, parentId) table. I'm writing a trigger that fires after insert on votes.
I would ...
3
votes
6answers
191 views
T-SQL update with switch-case statement
I want implement this pseudocode in t-sql
UPDATE Resources SET [Path]= CASE ([Path].Substring([Path].LastIndexOf('.')))
WHEN '.jpg' THEN '/image.jpg'
...
3
votes
1answer
74 views
Postgres: updating not-changed rows
Say, I have a following query:
UPDATE table_name
SET column_name1 = column_value1, ..., column_nameN = column_valueN
WHERE id = M
The thing is, that column_value1, ..., column_valueN have not ...
3
votes
4answers
357 views
TSQL Update statement with Join
I have two tables with a parent/child relationship. I want to update the parent with data from the child. However assuming there are 2 children I would like to be able to pick which child is used for ...
3
votes
1answer
93 views
update query works as I expect in SQL Server, but not in Postgresql
I have an ETL process that seems to work well in SQL Server, but I am trying to port it to Postgresql and running into something I don't understand.
I create a table called c_production in the first ...
3
votes
3answers
704 views
Insert/ Update random date in MySQL
How would I update a column with a random date in the past 2 weeks using MySQL?
For example (code doesn't actually work):
UPDATE mytable
SET col = sysdate()-rand(1,14);
3
votes
2answers
160 views
MySQL Update Query Optimization - Subqueries or not?
Which query would be the fastest: My own tests do not show any obvious results:
query1:
UPDATE items, brands SET items.brand_id = brands.id WHERE brands.name = 'apple'
--vs--
query2:
UPDATE ...
3
votes
2answers
260 views
update values incrementally in mysql
one field of my table's field is set to 0 for all rows. but i want to update to incremental value by step 1 in a update query.
how can i do that in mysql?
3
votes
4answers
2k views
mysql update multiple columns
I need to update 2 datetime columns, and I need them to be exactly the same, using mysql version 4.1.20. I'm using this query:
mysql> update table set last_update=now(), last_monitor=now() where ...
3
votes
1answer
118 views
Can MySQL do regular expression substitution in an UPDATE?
I've seen MySQL SELECT examples using the REGEXP operator for matching.
Is there a way to do regular expression substitution in an UPDATE?
If not, what's the simplest method to run a regex ...
3
votes
5answers
386 views
update all NULL fields MySQL
i´d like to update all NULL fields in one table to 0. Of course
UPDATE mytable SET firstcol=0 WHERE firstcol IS NULL
would do the job. But I wonder if there´s a smarter solution than just c&p ...
3
votes
2answers
325 views
How to do this in MySQL: if field value > 0 then minus one, else let it be
UPDATE tbl SET counts=counts-1 ...
3
votes
3answers
2k views
Prepending a string to a column value in MySQL
I need a SQL update statement for updating a particular field of all the rows with a string "test" join in the front of the existing value
For example, if the existing value is try it became testtry
...
2
votes
1answer
53 views
Please help me make this Access 2007 Friendly
I asked a friend to hellp me with an issue I was having with my Access Database since I haven't programmed in years, and here's what he replied with:
Let me toss an example out just to make sure ...
2
votes
2answers
73 views
MS Sql Server performance UPDATEing a single column vs all columns
MS SQL Srvr 2005/2008 on Win Srvr 2003+
I am only updating 1 row at a time, the UPDATE is in response to a user change on a web form.
I am updating a few columns in a table using the PK. The table ...
2
votes
3answers
63 views
MYSQL - Changing year of dates from 2020 to 2011
I have bunch of dates in format YYYY-MM-DD
But I have all year in 2020-MM-DD
I want to change it to 2011-MM-DD
How can I achieve this ?
2
votes
2answers
63 views
MySQL Update and Select one pass
I have a table dutyrecord which stores multiple user working hours (subtotal)
and a UserID (volunteerID). With the following selecting statement I am about to set a total hours for each UserID:
...
2
votes
3answers
49 views
How to not include blank fields when updating a MySQL record
How would I not include text fields of a form left blank in a MySQL update query? I understand why it's replacing filled fields with empty strings, but I'm not sure of an efficient way to fix it. Is ...
2
votes
5answers
157 views
SQL UPDATE statement to switch two values in two rows
I'm using SQL Server to swap two values in two rows. Let me show:
[ord] [name]
1 John
4 Jack
7 Pete
9 Steve
11 Mary
Say, I need to swap [ord] numbers for "Pete" and "Steve" to ...
2
votes
1answer
37 views
Update statement - need lowest value from 4 different columns copied into 5 column within same row
I'm fairly new to SQL Server and would really appreciate some help with this.
I have 4 columns in the same db table each with differing numerical values e.g.
col1 - 8, 6, 7
col2 - 9, 8, 5
col3 - ...
2
votes
2answers
355 views
JPA updating multiple rows and tables
i need to update multiple rows in Table a and it seems ok to use the object oriented approach by using a for loop and doing a merge.
...
// get list and assign columns to be updated
...
for ...
2
votes
1answer
32 views
How to update a field using alias in mysql?
I am having a table in mysql, and in that i am having two fields that is id and desc, now as desc is a mysql keyword, i am unable to update that field because mysql is giving syntax error, so i ...
2
votes
3answers
55 views
MySQL update based upon postal code
i have a usertable which includes a field named zip (postal code)
I also have a geo table with latitude, longitude values, based upon zipcodes.
so:
usertable
table_1 contains fields: zip, ...
2
votes
1answer
51 views
sql update table that has sequencing stored in it
I am trying to update a DB table with the following structure:
user_id, group_id, other_data, sequence
user_id points to a user table with all of the user data, and group_id points to a record in a ...
2
votes
1answer
92 views
Update table from a table while joining on a column alias
I apologize that my SQL Kung Fu isn't up to par, but this seems like a basic task that I can't seem to complete.
I've got two tables in Sql Server 2008
tblBoxAddress
--Address
--Zip
--Latitude
...
2
votes
3answers
288 views
SQL Update statement - syntax error near “SET”?
I am generating the sql statement below based on some coldfusion logic, but it is erroring and I can't seem to find the cause, I have tried making many different modifications to it and nothing seems ...
2
votes
2answers
201 views
Can read but cannot update
Problem: Any attempt to update the DB is denied in SQL Server 2008 R2 using SQL in classic ASP page.
In a nutshell, can read, but can't update/write to DB using SQL in ASP page
Error message:
...
2
votes
2answers
44 views
MYSQL: Update value from Query
I've got a query:
SELECT a.id, b.products_id,a.zenid
FROM titles a, ANOTHERDATABASE.products_description b
WHERE b.products_name = a.title
It gives
id products_id zenid
57 3193 0
81 ...
2
votes
4answers
179 views
Overwrite ID values using UPDATE statement from SELECT in another table SQL Server 2008
I have two tables that have exactly 20 rows in them. I want to overwrite Table2's ID values with the ID values from Table1 so that I can do tests with JOIN queries. How would I go about overwriting ...
2
votes
1answer
87 views
Updating Multiple SQL Rows
My setup is like this:
Admin search for orders depending on say address, or client name. Once all they orders are displayed for the search criteria they entered, they can select the orders using ...
2
votes
1answer
100 views
Updating multiple table in Sybase
Got a requirement to update certain fields of two tables (which got 60+ millions of rows) and I'm doing the UPDATE in a loop.
I'd like to update two tables in a single UPDATE (as its difficult to ...
2
votes
1answer
77 views
MySQL: Update a table in its own trigger
Apparently MySQL have the really annoying restriction of not being able to update a table inside a trigger defined for that same table.
I'm using MySQL version 5.1 and I get the error: "Can't update ...
2
votes
4answers
32 views
How to update row with the contents of that specific row + new data
I have approx. 60000 rows with street address in my db that contain short version of the
actual street address eg.
Svarvarg. 11
Kungsg. 10
Stora g. 19
"g." is a abbreviation of "gatan" and this ...
2
votes
5answers
639 views
MySQL - UPDATE query with LIMIT
I want to update rows in my table with starting from 1001 to next 1000.
I tried with following query:
UPDATE `oltp_db`.`users` SET p_id = 3 LIMIT 1001, 1000
This is giving me syntax error. Is ...
2
votes
2answers
74 views
Update a value in DB with ascending values with no duplicates?
I am using this query to update a column with ascending values:
DECLARE @counter NUMERIC(10, 0)
SET @counter = 1400000
UPDATE SomeTable
SET @counter = SomeColumn = @counter + 1
Question is, how ...
2
votes
2answers
1k views
T-SQL UPDATE using self join for a table variable
Imagine there is a table:
declare @tab table (id int, val int)
insert into @tab(id, val)
values (1,10),(2,20),(1,15)
there is a need to update the table and set for every id the sum of all values ...
2
votes
1answer
103 views
what is flow of this zend update statement
I know that this statement updates the record in the zend framework. But I want to understand the complete flow of this statement. Statement is ...