Microsoft
Software
Hardware
Network
Question : Need to query if a field starts with "+1"
Using C# and Access, I need to write extend my query to validate that a text field starts with "+1"
Curently here's the query. lastMessageId is an int value.
sql = "SELECT * FROM messages WHERE message_id > " + lastMessageId.ToString();
I need to learn the syntax for this validation. The field with the strings is called "frm"
in C# I'd say where frm.StartsWith("+1");
But I tell you this so you will understand what I am tryig to accomplish with SQL.
Thanks,
newbieweb
Answer : Need to query if a field starts with "+1"
sql = "SELECT * FROM messages WHERE message_id > " + lastMessageId.ToString() + " AND frm LIKE '+1%'";
Random Solutions
close a popup menu
Group Policy File Howto
How do I create a new MS Access file when copying linked MSQL Tables to a local MS Access table?
NAME? in fields on crosstab query subform
How to set AutoIncrement Property of a field ?
The disk is offline because of policy set by an administrator
Please correct query
monitor file creation in specific folder
How to read field names from an XSD file.
Concatenate in Query with Leading Zero