I easy one i guess but im still learning:
The query above uses data from a table called smslog
The query above gives me all the data containing BF or FE or 7f, doesnt mean anything to anyone else but alot to me!!
I now want to update this information to a table, the table is called UnitStatus
It lists all the telephonbe numbers and one field will be called status, I want to update this field with the word 'FAILED' when the query is run.
Any ideas anyone, im abit of a starter but manged to get the above sorted out with a little help in a previous thread!
thanks
Code:
SELECT smslog.*
FROM smslog INNER JOIN qryMaxDates ON (smslog.SentTimeStamp = qryMaxDates.MaxDate) AND (smslog.PhoneNumber = qryMaxDates.PhoneNumber)
WHERE (((smslog.Data) Like "*io:BF*" Or (smslog.Data) Like "*FE*" Or (smslog.Data) Like "*7f*"));
The query above uses data from a table called smslog
The query above gives me all the data containing BF or FE or 7f, doesnt mean anything to anyone else but alot to me!!
I now want to update this information to a table, the table is called UnitStatus
It lists all the telephonbe numbers and one field will be called status, I want to update this field with the word 'FAILED' when the query is run.
Any ideas anyone, im abit of a starter but manged to get the above sorted out with a little help in a previous thread!
thanks