473,406 Members | 2,390 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

syntax error for Update Query


I have this update query that I am trying to run. I know the syntax is
messed up but do not know how to correct it.

Select 'UPDATE', Transactions,'Set [balance] =[Daily Balance] where [Id]=
[Idalias]' From "Get Daily Balances"

Transactions = name of the table I want to update
balance = name of the field i want to update

daily balance= name of the query result that I want to move to the table
(this is the result of a Dsum)

ID=primary key in the table
IDalias = the query resulting copy of the ID number

Get daily balances = the name of the query that I need to update from

Thanks in advance for the help on writng the query correctly

Mark
--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...ccess/200507/1
Nov 13 '05 #1
7 3504
Mark Carlyle via AccessMonster.com wrote:
I have this update query that I am trying to run. I know the syntax is
messed up but do not know how to correct it.

Select 'UPDATE', Transactions,'Set [balance] =[Daily Balance] where [Id]=
[Idalias]' From "Get Daily Balances"

Transactions = name of the table I want to update
balance = name of the field i want to update

daily balance= name of the query result that I want to move to the table
(this is the result of a Dsum)

ID=primary key in the table
IDalias = the query resulting copy of the ID number

Get daily balances = the name of the query that I need to update from

Thanks in advance for the help on writng the query correctly

Mark

Can you use Access to create it? Open up the query designer
(Query/New/Design) and select/add table/query Transactions and "Get
Daily Balances". If needed, create a relationship line between the ID
fields. Now, drag the Balance field from Transactions. From the menu
select Query/Update to change it to an update query. In the Update row
for Balance, enter [Get Daily Balances]![Daily Balance]. Save and run.

You should end up with a query similar to this.

UPDATE Transactions INNER JOIN [Get Daily Balances] ON Transactions.ID =
[Get Daily Balances].IDAlias SET Transactions.Balance = [Get Daily
Balances]![Daily Balance];

Just curious. Why do people put spaces into table and query names? To
create more work for themselves?
Nov 13 '05 #2
Mark Carlyle via AccessMonster.com wrote:
I have this update query that I am trying to run. I know the syntax is
messed up but do not know how to correct it.

Select 'UPDATE', Transactions,'Set [balance] =[Daily Balance] where [Id]=
[Idalias]' From "Get Daily Balances"

Transactions = name of the table I want to update
balance = name of the field i want to update

daily balance= name of the query result that I want to move to the table
(this is the result of a Dsum)

ID=primary key in the table
IDalias = the query resulting copy of the ID number

Get daily balances = the name of the query that I need to update from

Thanks in advance for the help on writng the query correctly

Mark

Can you use Access to create it? Open up the query designer
(Query/New/Design) and select/add table/query Transactions and "Get
Daily Balances". If needed, create a relationship line between the ID
fields. Now, drag the Balance field from Transactions. From the menu
select Query/Update to change it to an update query. In the Update row
for Balance, enter [Get Daily Balances]![Daily Balance]. Save and run.

You should end up with a query similar to this.

UPDATE Transactions INNER JOIN [Get Daily Balances] ON Transactions.ID =
[Get Daily Balances].IDAlias SET Transactions.Balance = [Get Daily
Balances]![Daily Balance];

Just curious. Why do people put spaces into table and query names? To
create more work for themselves?
Nov 13 '05 #3

Ok I get an error message that says "Operation must contain an updateable
Query"

Transactions is a table... Get Daily Balances is a Query of Transactions.

Salad wrote:
I have this update query that I am trying to run. I know the syntax is
messed up but do not know how to correct it.

[quoted text clipped - 16 lines]

Mark


Can you use Access to create it? Open up the query designer
(Query/New/Design) and select/add table/query Transactions and "Get
Daily Balances". If needed, create a relationship line between the ID
fields. Now, drag the Balance field from Transactions. From the menu
select Query/Update to change it to an update query. In the Update row
for Balance, enter [Get Daily Balances]![Daily Balance]. Save and run.

You should end up with a query similar to this.

UPDATE Transactions INNER JOIN [Get Daily Balances] ON Transactions.ID =
[Get Daily Balances].IDAlias SET Transactions.Balance = [Get Daily
Balances]![Daily Balance];

Just curious. Why do people put spaces into table and query names? To
create more work for themselves?

--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...ccess/200507/1
Nov 13 '05 #4
Mark Carlyle via AccessMonster.com wrote:
Ok I get an error message that says "Operation must contain an updateable
Query"
Most likely [Get Daily Balances] uses a Totals query in it or else is a
Totals query. If so, you'll need to adjust your method of updating and
not use a Total query.
Transactions is a table... Get Daily Balances is a Query of Transactions.

Salad wrote:
I have this update query that I am trying to run. I know the syntax is
messed up but do not know how to correct it.


[quoted text clipped - 16 lines]
Mark


Can you use Access to create it? Open up the query designer
(Query/New/Design) and select/add table/query Transactions and "Get
Daily Balances". If needed, create a relationship line between the ID
fields. Now, drag the Balance field from Transactions. From the menu
select Query/Update to change it to an update query. In the Update row
for Balance, enter [Get Daily Balances]![Daily Balance]. Save and run.

You should end up with a query similar to this.

UPDATE Transactions INNER JOIN [Get Daily Balances] ON Transactions.ID =
[Get Daily Balances].IDAlias SET Transactions.Balance = [Get Daily
Balances]![Daily Balance];

Just curious. Why do people put spaces into table and query names? To
create more work for themselves?


Nov 13 '05 #5

[Get Daily Balances] is a Dsum Query of a Totals Query.

What I need to do is update a table with the results of the Dsum Query.

Am I going about this all wrong?

Salad wrote:
Ok I get an error message that says "Operation must contain an updateable
Query"


Most likely [Get Daily Balances] uses a Totals query in it or else is a
Totals query. If so, you'll need to adjust your method of updating and
not use a Total query.
Transactions is a table... Get Daily Balances is a Query of Transactions.

[quoted text clipped - 20 lines]
Just curious. Why do people put spaces into table and query names? To
create more work for themselves?

--
Message posted via http://www.accessmonster.com
Nov 13 '05 #6
Mark Carlyle via AccessMonster.com wrote:
[Get Daily Balances] is a Dsum Query of a Totals Query.

What I need to do is update a table with the results of the Dsum Query.

Am I going about this all wrong?
Yes, if you are attempting to update from a Totals query.

You need to change your methodology of getting the balance.

Salad wrote:
Ok I get an error message that says "Operation must contain an updateable
Query"


Most likely [Get Daily Balances] uses a Totals query in it or else is a
Totals query. If so, you'll need to adjust your method of updating and
not use a Total query.

Transactions is a table... Get Daily Balances is a Query of Transactions.


[quoted text clipped - 20 lines]
Just curious. Why do people put spaces into table and query names? To
create more work for themselves?


Nov 13 '05 #7

Well, I figured out finally that there is no need to store the balance... why
not just create a query that gives the balance along with the other info I
wish to view.

Thanks a ton for your help!

Salad wrote:
[Get Daily Balances] is a Dsum Query of a Totals Query.

What I need to do is update a table with the results of the Dsum Query.

Am I going about this all wrong?


Yes, if you are attempting to update from a Totals query.

You need to change your methodology of getting the balance.
Ok I get an error message that says "Operation must contain an updateable
Query"[quoted text clipped - 9 lines]>Just curious. Why do people put spaces into table and query names? To
>create more work for themselves?

--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...ccess/200507/1
Nov 13 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: John Pastrovick | last post by:
I use a function, myrandomPIN (), to generate random PIN numbers. The following sql query updates records with the SAME PIN number but. I want to generate DIFFERENT pin numbers for every record....
2
by: DFS | last post by:
Version 1: -------------------------------- If Condition = A UPDATE query 1 UPDATE query 2 ELSE IF Condition = B UPDATE query
4
by: deko | last post by:
I'm trying to update the address record of an existing record in my mdb with values from another existing record in the same table. In pseudo code it might look like this: UPDATE tblAddress SET...
0
by: Mark Carlyle via AccessMonster.com | last post by:
I have this update query that I am trying to run. I know the syntax is messed up but do not know how to correct it. Select 'UPDATE', Transactions,'Set = where = ' From "Get Daily Balances" ...
2
by: technocraze | last post by:
Hi guys, I have encountered this error when updating the values to the MS Acess table. Error : Update on linked table failed. ODBC sql server error Timeout expired. MS Acess is my front end and...
2
by: Flic | last post by:
Hi, I have a basic db that I access with MySQL query browser. Everything seems fine to me but I am using this db as part of a php shopping basket and when I try to add an item I get: Notice:...
1
by: RamanS | last post by:
I have these variables: Dim str1Year As String Dim str5Years As String str1Year = "1 Year" str5Years = "5 Years" and this query statement If Me.frmEvergreen.Value = 1 Then
5
by: Chris Kennedy | last post by:
Hi all I'm running SQL Server 2005 Express Edition. One database One table called Sites Fields as follows: id (bigint, Identity, Primary Key) SiteName (varchar(50), allows nulls) Generation...
2
by: benicio | last post by:
The subject update failed. You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE id = 6' at line 5. This is...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.