i have table with filmname and actors column in sql server 2005
i want the sql query to get all the actors of the film starred by both "bradpitt" and "rusellcrowe"
the table design is as follows
CREATE TABLE [dbo].[mytable](
[actors ] [nchar](10) NULL,
[filmname] [nchar](10) NULL,
) ON [PRIMARY]