Actually, you should always quote strings literals like that with single quotes, as the SQL spec doesn't reco'nize double quotes there. I.e. you won't be able to easily move your code to other databases.
select * from "tableName" where "fieldNum1" = '123';
Note that identifiers SHOULD be double quoted if needed, except that breaks most older flavors of MySQL unless you turn on the -ansi switch.