It sounds like you want to run the above SELECT
statement and INSERT
the results into a new table that does not exist. If so, this should work:
SELECT * INTO YourNewTable
FROM mygrist_tables
WHERE suic_att>=5 AND gender='M'
Assuming YourNewTable already existed, then you'd need to run INSERT INTO:
INSERT INTO YourNewTable
SELECT *
FROM mygrist_tables
WHERE suic_att>=5 AND gender='M'
Optionally you may need to specify the columns in they are not the same.
EDIT - Rereading comments and realizing DB is MySQL, to create a new table from a SQL statement, you should use:
CREATE TABLE YourNewTable
SELECT *
FROM mygrist_tables
WHERE suic_att>=5 AND gender='M';
http://dev.mysql.com/doc/refman/5.0/en/create-table.html