Tagged Questions
1
vote
4answers
29 views
select two columns based on the maximum value of the other column in SQL
Hi this is the table Im using say Loandetails
Loanno Balance amount DueDATE
1001045 308731.770000 12/31/99
1001045 2007700.740000 12/31/99
1001045 3087318905.770000 11/01/99
1001045 ...
2
votes
2answers
24 views
SQL Query in Excel gives “undefined function name” error
I wrote a SQL query in MS Access that uses the MonthName function. In access it works flawlessly. I copied the exact SQL statement into an excel module that I frequently use to query databases. ...
0
votes
2answers
21 views
Access: Updating multiple rows with different values
I have a table describing calls made with the company cellphones, one of the fields is callTypeId, every call has one, while other is callType, a text description of the ID. Several calls lack a text ...
-4
votes
0answers
38 views
sql query to update multiple row ( loop )
I'm having trouble updating multiple rows in an MS Access database using a for.. loop. The problem is my code is only updating the first row.
The code I'm using is
<%
dim array(6)=(some ...
0
votes
0answers
22 views
UNION ALL records less than sum of individual queries
I use UNION ALL to merge results from 3 queries. But I notice that total number of records returned by UNION ALL query is less than the sum of results returned by the individual queries.
I know UNION ...
0
votes
1answer
16 views
Transforming Database in Access
Not sure if it's even possible but I'm using Access 2010 and have the following table
> Reference|| Start Date || Month 1 || Month 2 || Month 3 || month N
> 123 || 01/02/2012 || 50 ...
1
vote
4answers
48 views
“Order by ” how to set it to order numerically
I have an sql Query which is used to generated information for a table in a form. I want the information to be order by the operation. I have the operations numbered from 1-30 but when I view them in ...
1
vote
2answers
72 views
using inner join to joining 3 tables?
How to join 3 tables?
select *
from tblcustomer as cust
inner join (tblamountdetails as det on det.[CustomerID]=cust.[CustomerID])
inner join (select cash.AccountID, sum(Amount) as [Paid ...
0
votes
0answers
16 views
Need to manipulate data in Access table. Using SQL to bring in data and make delete's
I have a table called JD setup with the columns listed below.
JD
---------------------------
OEMPartNumer | OEMDescription | OEMSubNumber | OEMSubNumber2 | OEMSubNumber3 | OEMSubNumber4 ...
0
votes
1answer
42 views
SQL Delete and Update didn't delete and update
I wrote a set of codes using SQL command to delete and update Access records through a C# program. Here is the set of codes:
Update
OleDbCommand cmd = new OleDbCommand("UPDATE Available SET ...
0
votes
1answer
27 views
Rankings using SQL
I am creating a database (schema) in Access for baseball related stats. What I want to for starters is create a query that will rank each Team's standing in a certain stat. For instance, I want to see ...
1
vote
4answers
38 views
How do I manage large data set spanning multiple tables? UNIONs vs. Big Tables?
I have an aggregate data set that spans multiple years. The data for each respective year is stored in a separate table named Data. The data is currently sitting in MS ACCESS tables, and I will be ...
2
votes
1answer
28 views
efficient asp.net sql query
Been using this site for years and have always found it very helpful and normally all my questions get answered by reading the site.
I have some case studies on a site than need to be related to ...
0
votes
0answers
16 views
Working with dates in SQL query using MDB-Tools
I have been working on a project where I have to fetch data from MS-Access database. I am using mdb-sql tool for running sql queries into that database. But the problem occurs when I try to put where ...
0
votes
0answers
24 views
Eliminating column values Access database with jdbc
I am collecting data values of a trajectory path of a target in a sensor network. I am using JDBC and MS Access database. My goal is to eliminate duplicate values in a column next to each other. The ...
0
votes
0answers
23 views
MsAccess similar Listagg function of Oracle
As the title I want to find a way to concatenate values of column into a String.
I know of Listagg in Oracle but is there a similar one for MsAccess.
0
votes
1answer
31 views
making a sub-query FROM two tables
SELECT staffNO, name, surname, position
FROM Staff s, Branch b
WHERE s.branchNo = b.branchNo AND city = 'London';
I have tried to make the above SQL code into a sub-query and I'm not getting ...
0
votes
2answers
33 views
Wanted [ Example of SQL transactions ] [closed]
I am fairly new to SQL. Currently I am trying to understand transactions and I am getting pretty lost. So I would like if you could just show me few examples of SQL transactions.
What I think I have ...
0
votes
1answer
17 views
IIF to Case translation
Ok, So i need to convert a query that was originally used on an access database into a query that will run on a SQL-Compact Edition database.
and within that query I had an IIF statement (which ...
0
votes
0answers
31 views
Category --> Sub-Category --> Populate Text Box
I have not touched SQL or MS Access in a long time but I am tryng to create two combo boxes; one main category and other sub-category, which based off your selection(s) populates a text box with a ...
1
vote
1answer
31 views
Android SQL INSERT Date into Access
I have an Android application that sends data to an ASP page, which then sends the information to an Access database. This worked fully before. Recently we had an issue with our server and now that it ...
1
vote
1answer
42 views
Inserting alphanumeric characters into ms-access database using asp classic
I am having trouble when I try to introduce alphanumeric characters into ms-access database. I am able to do it with numerical and date characters, but it seems to be a problem with alphanumerical ...
0
votes
1answer
44 views
only remove 1 record from duplicated (access database)
im making a reservation system, but i'm stuck at the moment.
Microsoft acces 2010 Tables:
-drinks
-ordered_drinks
structure
tables:
-id,
-..,
-...,
drinks:
-id,
-title,
-price,
ordered_drinks:
...
0
votes
0answers
35 views
Syntax error (missing operator), query has nested JOINs and GROUP BY
I'm trying to build a query that uses a JOIN and GROUP BY, as follows:
select r.id,r.[full name],r.[start date],min(work_date)
from
(resource r
left join
resourceVendorHistory rvh
on
...
0
votes
0answers
22 views
Adding a new record via subform
I'm making a simple shop database.
I have tables for products, customers, orders and order details.
I have a form of customers with a "Go to customer" combo box which works fine. It also has a button ...
0
votes
2answers
39 views
use Aggregate function with multiple table in Access
I have Four tables Items,Customer,Invoice_summary,Invoice_details. Here I want to join these four tables and to get Sum(Invoice_details.Item_quntity) and Sum(Invoice_details.Price) for a specific ...
1
vote
1answer
35 views
Circular Reference in MS Access
I'm getting a circular reference error in Microsoft Access SQL.
SELECT a.PlateNo, a.colm, a.alain
FROM (SELECT PlateNo, alain, min(InspectionDate) AS colm
FROM [Vehicle Spot Check] GROUP BY ...
0
votes
1answer
42 views
Combining two columns and adding it to another table in Access 2010
I have the following fields in tbl_games
game_id, home_team, visiting_team
I would like to move the data in these columns to another table called game_team where
game_id=game_id and home_team and ...
0
votes
2answers
40 views
I need to append data to an existing table in Access from 2 tables
I have data in two tables:
tbl_games has the following columns:
game_id, season, date, home_team, visiting_team,
home_score, visiting score, home_score_half_time, visiting score_half_time
...
1
vote
3answers
44 views
Using IN operator with Stored Procedure Parameter
I am building a website in ASP.NET 2.0, some description of the page I am working about:
ListView displaying a table (of posts) from my access db, and a ListBox with Multiple select mode used to ...
2
votes
1answer
34 views
Why is my datatable cell returning a null value?
I have an access database and a stored query. Here is my query...
SELECT MAX(CLNG(RIGHT(ProjectNum, 6))) AS LastDigits
FROM project_master_query
WHERE ((ProjectNum LIKE (IIF([@priorityDefID] = 4, ...
0
votes
1answer
29 views
Microsoft Access query won't order certain numbers
I'm working on modifying an access application for my work. I'm generating a report that has categories denoted by integers 1-11. Each subsection of these categories is a decimal such as ...
0
votes
2answers
34 views
Pivot a single row
im kinda new on using pivot. how can i pivot this record from this:
P1AVERAGE P2AVERAGE P3AVERAGE -> column name
1.25 1.50 1.75
to this:
AVERAGENAME AVERAGESCORE
...
0
votes
1answer
14 views
SUM and Pivot in Access
I currently have a table with individual transaction prices listed by SID:
+-----+-----------+
| SID | Item Cost |
+-----+-----------+
| 001 | $1.50 |
| 002 | $2.25 |
| 003 | $3.50 |
| ...
1
vote
1answer
55 views
What is wrong with this query, and how can I make it more efficient?
I have a ProjectNum column that contains a string data type. Normally the numbers are X1234... but if there is no number assigned, then one must be autogenerated and depending on the priority assigned ...
1
vote
1answer
62 views
How to simplify this insert statement
So I'm trying to insert 120 rows into a new table and it keeps throwing "Query too complex" errors at me. It works fine upto 90 rows.
This is the query:
SQL = "INSERT INTO " & newtable & " ...
0
votes
0answers
14 views
Parent-child relationship, combo box
I created tables Action List (AL) and Key Priorities(KP) and Subcategory (Sub). I set Both KP and AL to inherit subcategory from Sub table. Key Priorities is parent and AL is the child. Their ...
-4
votes
1answer
73 views
Sum of columns grouped by its row value
I want to create query to summarize Table1 as follows:
Table1:
+-----+------+-----+------+
|Col1 | Col2 |Col3 | Col4 |
|1 | 2 |3 | 1 |
|3 | 2 |1 | 1 |
|2 | 1 |3 | 1 ...
0
votes
1answer
29 views
SQL reports error when secondary table has no records
I'm writing a Family Tree application with an Access 2010 back end and VB.NET front end. (Long story, not relevant here.)
Most everything works, but I need to sort the marriages for a person. As with ...
0
votes
1answer
23 views
Records with a field that is a sum
I am trying to create a multiple items form in MS Access where each record has a field that is an aggregate value. That is, I have two tables with a one to many relationship. For each record in table ...
1
vote
1answer
22 views
Pivoting data in MS Access
I have a query that I've created to pull student IDs and meal items they have taken over a month long period. I would like to count the numbers of each item (Breakfast, Lunch, Snack) taken by a ...
0
votes
1answer
31 views
Working with pictures in MS Access and SQL Server
How exactly does one go about:
getting images/pictures into a SQL database
viewing pictures from a SQL database using a MS Access form?
I currently use an ODBC link between the two databases with ...
1
vote
1answer
21 views
MS Access Query - Display Exclusive Records
I have built a Query that lists the Top 100 SKUs sold with in the company this year. We sell over 650 Items, with multiple variations on size of this item which ranges out to around 15,000 total SKU's ...
0
votes
3answers
81 views
SQL: Query 2 tables to get latest date for each record
I have two tables that I want to query Customer and Service
Customer table
cnum lastName Address Phone Comments
2 McKenzie Main Street ...
1
vote
1answer
21 views
Linked Query in Access 2010 to a database that is password protected.
I am trying to make a linked query, very similar to a linked table, in Access 2010. I have built a query in one database where the source database is another database. This allows me to select all ...
0
votes
3answers
53 views
How to get three count values from same column using SQL in Access?
I have a table that has an integer column from which I am trying to get a few counts from. Basically I need four separate counts from the same column. The first value I need returned is the count of ...
3
votes
3answers
119 views
Count and sum of value in a table
I have table in Access which I want to create query from. I want to count how many times value 1 occurred in 1st column, how many times value 2 occurred in 2nd column etc.
ID Col1 Col2 Col3 ...
1
vote
1answer
32 views
Zero-order hold in time… Possible?
Now, I have a table X in MS Access with the following fields:
X (Table)
- Dates (Date/Time)
- Number1 (Double)
- Number2 (Long Integer)
Now suppose it has the following three records:
2000-01-01 ...
0
votes
2answers
45 views
in sql how to return single row of data from more than one row in the same table
I have a single table of activities, some labelled 'Assessment' (type_id of 50) and some 'Counselling' (type_id of 9) with dates of the activities. I need to compare these dates to find how long ...
0
votes
1answer
52 views
SQL query not producing any results
I have a following SQL query that I run inside C# application. I work with local (no servers) database created in access:
string query = @"SELECT s.TagID, se.SessionID, '" +
...
