Let's look at this statment :
SELECT name
FROM sysobjects
WHERE name = N'<table_name, sysname, test_table>'
AND type = 'U'
I would like to know the meaning of :
- N' (name=N'...)
- the syntaxe : N'<table_name, sysname, test_table'> , why/when this form is used.
Why not simply : name='test_table'
Thanks a lot in advance