how to add multiple columns in alter statement, anyone can help
Loading
how to add multiple columns in alter statement, anyone can help
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.


Here is one example,
ALTER TABLE employees
ADD last_name VARCHAR(50),
first_name VARCHAR(40);

Rajanikant HawaldarPosted Aug 31, 2021, 6:49 AM