(sorry for my poor english)
If you try this select operation over a sqlite database:
SELECT column AS \'alias 1\' FROM table;
Use backticks
SELECT column AS `alias.1` FROM table;
Or double quotes (ANSI standard) per the other answer
SELECT column AS "alias.1" FROM table;
Both verified in SQLite Manager for FireFox