Recent content by Ganley

  1. G

    Upper Case

    Sorry for the confusion. But what I now need to do is, currently in my table I have some names that are all Upper Case. I just need to keep the first letter as upper case. I’ve created an update query, UPDATE table1 SET [column] = lcase([column]) I am not sure what to do. If I get the...
  2. G

    Upper Case

    Any ideas how to Capitalise data in a table.
  3. G

    Merge Tables

    I have database A & database B, which is a copy of the first. I have made some changes to database B but need to merge one table back into the original database. Any ideas. Thanks.
  4. G

    Split a name filed.

    Thanks for that i'll have a go.
  5. G

    Split a name filed.

    Hello there. I Have a Forename & Surname field. I want to be able to split the the Forename field into Forename & Surname. Any ideas.
  6. G

    Remove Duplicate Records

    Thanks Gemma. You put me on the right track. This is what i ended up doing. Create a new query and bring in the table in question. Drag in both the field or fields that contain the duplicate data and the unique key for that table. Set on the totals for the query by clicking the summation...
  7. G

    Remove Duplicate Records

    Can anyone suggest a way to remove duplicate records. I've come up with this: SELECT *, count(*) cnt FROM tableName GROUP BY fieldname1, fieldname2, .... HAVING cnt > 1 But this does not fully resolve my problem. Thanks.
  8. G

    Update Query

    Thanks Miguel.
  9. G

    Update Query

    Can anyone help me. Attempting to run an update query to strip out some information from a table. Basically I want to remove the Tél : information & leave just the telephone number Tél : (+41 22) 718 10 00 Any ideas. Thanks.
Back
Top Bottom