Search Results

1
vote

Simulate enums in TSQL?

In PostgreSql I just use VARCHARs with constraints attached ... CREATE TABLE movie_clip ( type VARCHAR(40) NULL CHECK(type IN ('trailer', 'commercial')), ); #=> inse …