About 31,200 results
Open links in new tab
  1. sql - How do I count unique items in field in Access query? - Stack ...

    How do I count unique items in field in Access query? Asked 13 years, 4 months ago Modified 6 years, 8 months ago Viewed 262k times

  2. sql - Is it possible to change the name of a column in a query table in ...

    Jan 23, 2019 · I have made a query table using a combination of local tables and other queries in Microsoft Access. Two of the columns in this query have the same name, is this possible to change …

  3. sql - Convert String to Date in MS Access Query - Stack Overflow

    I am trying to retrieve data from my access table based on Date column. My requirement is to display everything greater than the certain value. I am trying to cast my value, which is a string using

  4. Row numbers in query result using Microsoft Access

    I always use this query in sql server to get Row number in a table:

  5. ms access - How to use LIKE condition in SQL with numeric field ...

    3 In Access database engine SQL syntax, to use the % wildcard character EITHER you must be using ANSI-92 Query Mode OR use the ALIKE keyword in place of the LIKE keyword.

  6. MS Access Selecting Blank/Empty/Null Text Records

    8 For normal text, Access handles strings with only spaces as empty strings (e.g. SELECT " " = "" returns -1 = True). This means that the solution introduced by June7, WHERE TextField & "" = "", is …

  7. ms access - SQL multiple join statement - Stack Overflow

    Apr 12, 2013 · 6 In spite of MS SQL Server, MS Access requires parentheses for a multiple JOIN statement. Basically, JOIN is an operation between two tables. When you have more than one JOIN, …

  8. sql - how to use distinct in ms access - Stack Overflow

    SELECT Priority, Subject, Status, DueDate, Completed, Category FROM Task, Categories WHERE Categories.CategoryID=Task.CategoryID; Now as multiple contacts are selected for that task,for the …

  9. How to List Field's Name in table in Access Using SQL

    Jul 19, 2012 · Access isn't always the tool you need, but it's often the tool you have. One note on applying this in Access 2013: I had to enable Microsoft ActiveX Data Objects 6.1 Library in Tools -> …

  10. What is the equivalent of Select Case in Access SQL?

    Apr 3, 2013 · I have a query which includes fields named openingbalance and commissions. I would like to compute values for commissions based on openingbalance, similar to this Select Case block in …