This is from SQL Server 2008, ssms
When I create a table, it creates under dbo.
I would like to create it under a different schema, but when I use the \'New
Try running CREATE TABLE [schemaname].[tableName]; GO;
CREATE TABLE [schemaname].[tableName]; GO;
This assumes the schemaname exists in your database. Please use CREATE SCHEMA [schemaname] if you need to create a schema as well.
CREATE SCHEMA [schemaname]
EDIT: updated to note SQL Server 11.03 requiring this be the only statement in the batch.