I am trying to make few tables in the database.
& the tool I`m using is Azure Data Studio.
Command that I`m using it:-
CREATE OR ALTER TABLE TABLE_NAME
(
Date datetime,
Sequence nvarchar(8),
Code nvarchar(3),
)
GO
What I wanted to do is, create a table if not exist or if it does exist then alter it. I`m unable to understand why its failing.
We already have something available on Stackover Flow itself Incorrect Syntax near the keyword 'OR' in CREATE OR ALTER PROCEDURE
We have create and alter
for external tables here.
Why this isnt working?