Hi i'm new to sql server here i have sql query to alter the table like
ALTER TABLE `ct_email_templates`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=30;
How can i write this query into sql server?
I tried the below one, is this correct or not?
ALTER TABLE ct_email_templates
add id int IDENTITY(1,30) NOT NULL
Please help me. Thanks in advance.