mail-id table contains two columns(email_id,userid)
it contains different types of mail-ids,and no of users.
here username length is differ na,(ex-
tamil@yahoo.com,joshua@hotmail.com like)
now i want to fetch the email-ids only starting from '@'
(ex-@gmail.com,@yahoo.com,@hotmail.com

Answer Posted / paul

just tel me is that wat u exactly want

table -Email

email_id user_id
joy@yahoo.com joySmith
waine@gmail.com WaineR
@gmail.com tr222
@yahoo.com huip

if m not wrong in understanding ur question that is u
required the 2 records with emailid as @gmail.com and
@yahoo.com
then u can use the sql statment -with like...

select * from email where email_id like '@%';
email_id user_id
@gmail.com tr222
@yahoo.com huip

hope m correct...

Is This Answer Correct ?    2 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do you delete duplicates in sql query using rowid?

531


What is the most common sql injection tool?

539


What is the example of procedure?

509


What is indexing oracle sql?

554


What is natural join in sql?

530






What is user defined functions?

570


Is natural join and inner join same?

485


What is sql and explain its components?

591


What is a sql select statement?

562


What are the limitations of sql express?

520


How can I see all tables in sql?

534


How is a PL/SQL code compiled?

664


what are all the common sql function? : Sql dba

574


What are instead of triggers?

615


What is the difference between an inner and outer join?

531