2
I worked a long time with Postgresql and now with SQL Server I have missed some features that made life much easier.
I have for example a table that one of your columns should be a list of strings, namely, a array of sweep (in the postgre it was all very simple):
CREATE TABLE MyTable (
id integer PRIMARY KEY,
name varchar(30),
questions varchar(50)[]
);
Unfortunately in SQL Server this is not possible. I could make a second table called QuestionsForMyTable
:
CREATE TABLE QuestionsForMyTable (
id_of_mytable integer,
question varchar(50)
);
And then do the proper relationship, but hey I fall into the disgrace of having to do one more JOIN.
This is really what I have left or is there a better way out?
Yeah, that’s right, that’s right
– Sorack