Skip to content

Tag: ms-access

Returning values from a database with a Substring

Let’s say I’ve got 3 product description fields with the values AC-120 XXX, AC-120,CCC and AC-120 BBB. How would I get that information from a table using only AC-120 as my search argument? I’ve tried using the subStr function but that won’t return any values either Answer LIKE is very…

MS Access – string to date

I have a column Date with this format: 2019-07-01T07:03:05.612289+02:00 And I need chage thit final form yyyy-mm-ss (in this example 2019-07-01) Unfortunately this code does nothing: SELECT Format (…

Optimizing Access Query with Multiple sub-queries

I have a table of data that contains baseline project information, called ADMIN_WORK. I have a separate table that contains various attributes related to each project listed in ADMIN_WORK called WR_ATTRIBUTE. The structure of WR_ATTRIBUTE is such that each project has about 300 attributes (300 rows in the tab…