• inevercheckthis2002 (4/7/2014)


    Insert values:

    INSERT INTO visited

    VALUES

    (N'Home', N'Kim'),

    (N'Contact', N'Kim'),

    (N'Products', N'Kim'),

    (N'Home', N'Joe'),

    (N'Contact', N'Joe'),

    (N'Home', N'Pam'),

    (N'Home', N'Sam'),

    (N'Contact', N'Sam'),

    (N'Products', N'Sam'),

    (N'Home', N'Ray'),

    (N'Products', N'Ray),

    (N'Home', N'Kim'),

    (N'Home', N'Pam'),

    (N'Home', N'Sam')

    ;

    (Actually, this did not work, I had to insert each row one at a time. I'd like to know why..)

    [/code]

    Just missing an apostrophe

    (N'Products', N'Ray),

    😎