An SQL UPDATE statement is used to change existing records in a table.
0
votes
1answer
9 views
Update a timestamp in a database and add +1 to a value at the same time
I have a table called ratings and I want to run a statement to update the table setting the column rate1 to + 1 of the value currently in the column and I want to update the column 'lastSubDate' to ...
0
votes
1answer
8 views
Update a table with an aggregate sum from another
I have tables A and B
A B
ts ta ts ta
1 0,00 1 10,00
2 0,00 1 5,00
3 0,00 1 6,00
4 0,00 2 3,00
...
0
votes
1answer
35 views
UPDATE with ORDER BY
Need to "tie" UPDATE with ORDER BY. I'm trying to use cursors, but get the error:
cursor "cursupd" doesn't specify a line,
SQL state: 24000
Code:
BEGIN;
DECLARE cursUpd CURSOR FOR SELECT * ...
1
vote
1answer
29 views
sqlalchemy bulk update performance problems
I need to increment values in a column periodically with data I receive in a file. The table has > 400000 rows. So far, all my attempts result in very poor performance.
I have written an experiment ...
0
votes
2answers
24 views
Error updating record in mysql database
I am updating a mysql table. i am getting an error as below
Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\test\edit.php on line 232
Error. You have ...
0
votes
1answer
12 views
How can I update 2 tables while doing inner join MySql?
I am trying to update 2 differant table in MySql while I have them both inner joined on each other.
Here is my last try which return the following error
#1064 - You have an error in your SQL syntax; ...
0
votes
3answers
27 views
sql trigger - if statement - Prevent update
I want to create a trigger to prevent values being entered above a certain value.
I have read a little but cannot relate the question below to my own.
Trigger to fire only if a condition is met in ...
-2
votes
4answers
37 views
Why does this keep give syntax error or $_end error?
<?php
if(isset($_POST['update']))
$dbhost = 'localhost';
$dbuser = 'XXXXX';
$dbpass = 'XXXXX';
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
if(! $conn )
{
die('Could not connect: ' . ...
0
votes
4answers
26 views
PHP mySQL query for updating row in table using variables
My PHP file contains the following function. It works when I set the review column to '$review' and the IdUser to 2. But I need to have the IdUser set to the variable $user. What is the correct ...
-1
votes
0answers
28 views
Why can't one SQL Update a SQLite Table with the contents of a dataframe from within an R function?
This seems reasonable. I'm using sqldf and a local database to minimize memory issues that I continue to run into with a large dataset. The gist of the issue here appears to be that sqldf isn't ...
0
votes
0answers
20 views
How do I update tables in the Android onupgrade SQLiteDatabase event?
I am having issues getting the update to work in the onUpgrade event in the SQLiteDatabase event for an android application. The data is not getting updated after executing the SQL update when ...
0
votes
0answers
16 views
MySQL, linking data, constructing keys, insert into and update
I have information relevant to specific groups of a table A. So I sort out these relevant groups and make an entry containing the group-specific information in a second table B. Up to this point no ...
0
votes
0answers
20 views
UPDATE table from another TABLE using database link
I need to add values to username field in table1 from table2 in different connection.
What I have so far is:
UPDATE conn1.table1
SET table1.USERNAME =
(
SELECT MSUSERNAME ...
1
vote
0answers
35 views
Getting contenteditable div's current value and update database
I'm new to web development and I'm trying to create editable database interface. I have got checkboxes in every row and an edit button. I need to update table(in database) when button clicked(rows ...
0
votes
1answer
20 views
Syntax of a multi-row update that updates specific rows with unique information
I've been having a hard time finding a good example of exactly what I am trying to do.
I have a multidimensional array containing 1-N entries. I want to update a table in MySQL from this array, but I ...
1
vote
1answer
21 views
Adding time to rows with a specific timestamp in a database
I have a database table that includes a timestamp for each record. Everyday this database is updated by a cron that was set to run 1 minute before gmt midnight (23:59:00). We are changing the cron to ...
0
votes
1answer
41 views
SQL UPDATE query executes correctly via MySQL Workbench but not via PHP
I have the following SQL query:
UPDATE uploads SET UserName='Test2', UserEmail='Test2', UploadCount='4'
WHERE Country = 'Algeria'
When I run this query via MySQL workbench it executes fine.
I am ...
1
vote
1answer
36 views
Most efficient way to update database
I have a table that is auto-updating from time to time (say daily). All updated fields are of type TEXT, and might have lots of data. What I definitely know is that the data will not change a lot. ...
0
votes
2answers
29 views
Product Reservation Script PHP
I'm trying to code a script that reserves products for a shop. It should work by sending the data to the mysql database and then it returns the values in the 'shop'. The code is as follows;
Viewing ...
0
votes
0answers
6 views
Update doesn't work inside a stored procedure called from OPENROWSET
We have a stored procedure that calculates a value and stores it into a table.
We're trying to get that value with a subselect query in this way:
PROCEDURE CODE:
[...] Code to calculate the value. ...
0
votes
4answers
28 views
post not completely posted PHP
I have a select value 'post', when someone wants to change the status of the post from unsolved to solved they have to choose a post en than click 'change to solved'
The problem is when I click on ...
1
vote
2answers
24 views
PreUpdate listener triggered during empty update
I have an entity with the last modified attribute:
@Temporal(TemporalType.TIMESTAMP)
private Date lastModified;
@PreUpdate
@PrePersist
protected void onUpdate() {
lastModified = new Date();
}
...
0
votes
1answer
35 views
How to update this query with 2 data arrays for WHERE condition
hi i have 2 data arrays ,
$lob_array = array(200,201,300);
$preference_array = array(500,501,502,503,504,505);
i have a table rating
it has fields
rating_id | lob_id | preference_id | ...
0
votes
0answers
21 views
update pipe separated Numeric Id with AlphaIds
I have a requirment where I need to replace these pipe delimited Numeric employee Ids with Alphanumeric Employee Ids based on join with a master table on Numeric EmployeeIds
...
0
votes
1answer
35 views
update mysql value based on previous date value
I have a mysql table with the following structure
id name_id class_id currency date value change
1 BILL A 0 04-01-2013 10.00 0
5 BILL A 0 ...
0
votes
0answers
22 views
update from statement in SQL Server 2008 execution efficiency
I have such functions in SQL Server 2008, the execution time is so long.
CREATE TABLE [dbo].[T_SourcePayin](
[sourcePayinId] [int] IDENTITY(1,1) NOT NULL,
[checkPeriod] [varchar](6) NOT NULL,
...
0
votes
0answers
48 views
SQL UPDATE doesn't work
I have a problem to update my SQL query in the database.
if I test the query in my phpadmin it works but not in mycode. I don't know what the problem is.
Here is my code for SQL query:
$status = ...
-1
votes
0answers
20 views
update 150k row in sql server 2008 from 1k base table
I have a table table_B having 500k rows every month, and there is another base table having 10k rows as dictionary table.
The function is
update table_b
set table_b.col_a = b.col_a
from ...
1
vote
2answers
24 views
Oracle : Which column to update ? Complex query
I have table with 15 columns, 12 columns (January, February, March,...,December), to fill my table i should know the column to update.
because the update qurey depend to the user entry, if he enter 1 ...
0
votes
2answers
17 views
mysql table update from other table
i have two tables.
table1
a - b - c- d - e
1---b1---c1---d1---e1
2---b2---c2---d2---e2
3---b3---c3---d3---e3
4---b4---c4---d4---e4
5---b5---c5---d5---e5
table2
a----b----c----d----e
...
0
votes
2answers
31 views
How to UPDATE a column using a variable?
I have two questions:
1) How can I call a variable inside the UPDATE Query because i want to use the same line to update lots of columns.
I did it in the INSERT and SELECT, but it cause error in ...
0
votes
1answer
34 views
Android SQLite: Failing to update records
I'm developing a small app that keeps records of places and the categories they belong to. For now, I'm just working on the category table and once I manage to perform all CRUD operations, then I'll ...
0
votes
1answer
24 views
mySql update with the sum() of rows
"id" "type" "parent" "country" "votes" "perCent"
"1" "1" "0" "US" "100" "0"
"2" "1" "0" "US" "50" "0"
"3" "100" ...
0
votes
1answer
63 views
Using UPDATE cursor in PL/SQL
As far as I can see, I can make an UPDATE in PL/SQL without using a CURSOR.
For example:
CREATE OR REPLACE PROCEDURE update_my_table (id NUMBER)
AS
...
BEGIN
...
UPDATE my_table SET ...
0
votes
1answer
56 views
Unable to save data to Entity Model Database using saveChanges() method
I am trying to save data to my database. What I want is that when the button is pressed, data is saved to the database permanently. I've done tests where code is saved while the application is ...
-4
votes
1answer
46 views
Records are not updating in database? [closed]
Here is my code, it's working upto retrieving the data but after clicking submit button fname,lname,gend are showing as empty fields and notices as undefined index fname,lname,gend.
...
2
votes
1answer
26 views
count in mysql update mysql query, error support
hello need a update starting from..
SELECT
tA.id, count(*) c
FROM
tA
join
tA ON tB.id = tA.id
where
tA.id = 5
GROUP BY tA.id
having c > 1;
I have a relational model ...
0
votes
3answers
35 views
Updating table with the data from another unrelated table
I'm using SQL Server 2008 R2, I have the following tables:
client(id,country,name) and temp(id,country), and they are UNRELATED between each other.
I want to know how can I set the temp.id value to ...
0
votes
4answers
28 views
UPDATE Postgresql where row…else delete
Here's what I have:
col1 | col2
------| ------
a.....| x...... a.....| y...... b.....| y...... c.....| y...... d.....| y...... d.....| x.....
Here's what I want:
col1 | col2
------| ------
...
1
vote
1answer
41 views
Is it possible to utilize $addToSet multiple times in the same update?
So here is what I want the documents in my collection to look like structurally:
{
"_id": "123",
"systems": [
{
"_id": "1338",
"metrics": [
...
1
vote
1answer
46 views
SQL Server : when using multiple UPDATES in a single query, will the WHERE clause use the current or updated field values?
This is a very simple question, but the SQL Server documentation doesn't explain this as clearly as I would like, so I would appreciate someone spelling it out for me.
I am updating a table with new ...
0
votes
0answers
10 views
Updating MySQL with user entered values
The first jsp page (send1.jsp) displays all data from the MySQL database, and consists of an edit button for each row.
Once the user clicks on the edit button for a particular row, the size variable ...
0
votes
1answer
30 views
Update Query VBA Access
I am wanting to copy information from the Id column in the Products table to ProductsId column in another table using vba/sql in Microsoft Access. I was just wondering how I would be able to do this.
...
0
votes
3answers
71 views
Date Issue with SQL update statement in c#
I have a Date field in a table that is displayed as Day-Month-Year Hour.Minute.Seconds and I am trying to update the HOUR field when there is the same Ertnumber and Date. I can get the field to update ...
0
votes
4answers
40 views
Current timestamp field in mysql table is not updated automatically
I really apologize for asking such a simple question but i am stuck in it. Actually my table has three coloumns such as id, status and date. The date field is current timestamp (Also I have selected ...
0
votes
0answers
52 views
SQL Update table from not exists statement
Still new but learning lots.
I have 2 tables AVDMASTER and AVDupdates.
I would like to update the current existing row(s) in AVDMASTER (Fields: OWNER, REG, PREVIOUS) with new data from AVDupdates ...
2
votes
2answers
64 views
SQL Fill in blank data based on previous rows
I have a SQL Table that is similar to the following:
ID, Date, D1, D2, D3
1 1/1/13 0 X A
2 1/2/13
3 1/3/13 1
4 1/4/13 B
5 1/5/13
that I need to update to the ...
0
votes
1answer
31 views
Tsql Column Comparision on Sample table and update rows
I am trying to compare two columns in table 1 and update the rows in same table 1.
Sample Table
Table1 with columns A, B ,C, D
A B C D
-------
X 1 X 0
X 2 X 0
X 3 Y 0
Y 4 X 0
IF the columns A ...
0
votes
0answers
14 views
Unknown stored procedure being called during update query
I've got SQL Server 2012 with a table having a field layout like this:
(UID bigint, Email varchar(64), Password varchar(64))
When I run a query like this:
Update *tablename*
Set ...
0
votes
1answer
39 views
Edit Value in MySQL Database
I am trying to edit the value of an integer in my database through php, Here is the code I am using
$query = "UPDATE Bremners WHERE stud_name = john SET stud_goal = stud_goal + 1";
Bremners is the ...





