module Sequel::MSSQL::DatabaseMethods
def create_table_sql(name, generator, options)
a regular and temporary table, with temporary table names starting with
MSSQL uses the name of the table to decide the difference between
def create_table_sql(name, generator, options) "CREATE TABLE #{quote_schema_table(options[:temp] ? "##{name}" : name)} (#{column_list_sql(generator)})" end