Topic profile page for Query.
This page has aggregated data from forum posts, threads, listings, online discussions, newsgroups, messageboards, and other online sources which contain user generated content for the term: Query.
Topic "Query" was discussed 278,817 times on 7,689 sites in last 3 months
Started 17 hours, 21 minutes ago (2009-11-12 04:50:00)
by Chip
Hey everyone, I keep getting an error in this query that says Syntax Error in JOIN operation. Does anyone see what I dont see here? SELECT tblStudents.ID, [tblStudents]![Lastname] & ", " & [tblStudents]! [Firstname] AS Expr1, tblStudents.CourseNum, [qryAEDPR Latest].LastOfPRDate, [qryAEDPR Latest].LastOfOutcome, [qryBLSPR Latest...
Started 20 hours, 35 minutes ago (2009-11-12 01:36:00)
by therain
Hi , I have a Oracle DB server (16 GB RAM) . The time taken to execute a query is 1 sec . The results (3 Lac records) have to be exported to a CSV . To acheive this , in java , i have written the following, strSql = "select * from test_view"; PreparedStatement stmt =con.prepareStatement(strSql); ResultSet rs = stmt.executeQuery(); csv.writeAll(rs,true); csv...
Started 20 hours, 39 minutes ago (2009-11-12 01:32:00)
by Hugh self taught
Hi Everyone, I have a basic form for data entry /update of Competitors. I now want to set the default value of a cbo box "Age Group" when I have updated the value in the Date of Birth field. I already have the following query for another purpose elsewhere that I should be able to use but I can't get the correct syntax in my ...
Started 22 hours, 24 minutes ago (2009-11-11 23:47:00)
by Frank Situmorang
Hello, I appreciate your help, the following is my cross tab query used in the report, however some of the records do not show up, could you help me how can I solve it?. I tried to make the detail can grow, but the result is still the same. ( some records do not show up) This is my query: PARAMETERS [Forms]![...
Started 23 hours, 45 minutes ago (2009-11-11 22:26:00)
by acw1980
I need to put a date parameter in my query that pulls the last 13 "Full" weeks of data. I get close by using the following: Between DateAdd("ww",-14,Date()) And Date() But this actually counts back 13 weeks from today which will give me part of this week ( week # 46) and part of the first week (week# 33). What I need to achieve is the last 13 full weeks (Sunday - Saturday), so...
Started 1 day, 2 hours ago (2009-11-11 19:45:00)
by BringBackRealDance
Gday guys, just a quick query I had, in regards to mixing with two different CDJ's. Basically Ive owned a Denon Dns3500 for a number of months but cant seem to get my hands on another one, at a reasonable price. A mate of mine is selling one of his Denon DNS-5000's which for all intensive purposes are very similar to the 3500 in features. They both have identical pitch range etc. Just from other ...
Started 1 week, 1 day ago (2009-11-04 07:39:00)
by TStander
Good day I'll try to illustrate my problem with an example: Say I have the following table: Nr Value ----------- 1 10 2 5 4 6 5 8 I would like to query this table and to manipulate the result to look like Nr Value ----------- 1 10 2 5 3 NULL 4 6 5 8 In short - I would like to ...
Started 4 days, 2 hours ago (2009-11-08 19:58:00)
by halfticket halfticket is offline Registered User
I have a CLAIM_LINE table The CLAIM LINE table has CLM_NBR CLM_Line number ALLOWED_AMT DEDB_AMT every CLM_NBR has multiple claim_Line_numbers I am trying to write a SQL query to display the above two amounts in an aggregated manner such that it will show me the TOTAL ALLOWED_AMT and TOTAL DEDB_AMT per every CLM_NBR and NOT break it down by CLM_LINE number. select...
Started 1 week, 1 day ago (2009-11-04 00:27:00)
by Jignesh R Vachhani
Hi All, I have developed search portlet using custom query.In that query i am using 3 tables joining. I have 4000 articles so whenever i am searching through keyword it will search article name,article content from article tables. But it is taking too much time for giving search result. Anybody can have idea why this is happening? Please reply its urgent Thanks.
Started 6 days, 20 hours ago (2009-11-06 01:35:00)
by imaginit
I need to build a query that queries products based on multiple categories. A product can have multiple categories attached to it and I want to query products that are only in ALL of the selected categories. My query might look like: SELECT * FROM products INNER JOIN products_categories.productid = products.productid WHERE products_categories.categoryid IN (1,5,13) The results I ...
Started 2 days, 14 hours ago (2009-11-10 07:24:00)
by gm000
i have two tables one submittable and 2nd commenttabe submittabls has field Expand | Select | Wrap | Line Numbers ID URLID URLADDRESS USERNAME DATETIME 2nd table(commenttable) Expand | Select | Wrap | Line Numbers URLID COMMENTID TEXT Now i want single query which show submittable records and count ...
Started 1 week, 1 day ago (2009-11-04 13:28:00)
by indianspring
Simple Query Help Hi Folks, Simple one for you (which I would be able to do in excel easily but very little knowledge of access) I have 3 columns, A contains a country B Any one of four numbers C a cash value I would like a query which I can run for if A=FRANCE and B= 3 (and so on) then sum the values in column C for the...
Started 6 days, 21 hours ago (2009-11-06 00:13:00)
by isblank
SuperNoob Q on 'make table' query Hi. Quick Q (Access 2007), can someone answer... When you 'make table' from a query, Access makes a table. Great! I don't know how to get that table to refresh so that changes in the source are reflected in the table created from the 'make table' query, or if this is even possible? Is ...
Started 1 day, 19 hours ago (2009-11-11 03:06:00)
by baadams
Reserved Error after Append Query I've got a query that's extracting data from a linked Excel file. You can view the query results. Once converted to an append query you can still view the results as expected. But, once added to a macro to automatically run at the push of a button I get "Reserved Error". Now here's what's odd. ...