R
ryan
I'm new to sql and am using access. I've been playing around with the
InStr function and have gotten the below query to run and update the
table to show only the text after the @ in a column with all email
addresses. My question is how do i make it a standard select query
instead of updating the current table. Also once i have all of the
email service providers how do i display those in a quantifying way
through a pivotchart or how could i count them using the totals row in
a query. Thanks for any help
UPDATE Table1 SET email = mid(email,instr(email,"@")+1,200);
InStr function and have gotten the below query to run and update the
table to show only the text after the @ in a column with all email
addresses. My question is how do i make it a standard select query
instead of updating the current table. Also once i have all of the
email service providers how do i display those in a quantifying way
through a pivotchart or how could i count them using the totals row in
a query. Thanks for any help
UPDATE Table1 SET email = mid(email,instr(email,"@")+1,200);