Blog
Documentation
Knowledge Base
Send Feedback
Contact Us
toggle menu
Sign In
·
Register
Sign In
·
Register
Categories
Discussions
Activity
Best Of...
Sign In
·
Register
×
Home
›
General Discussion
Discussion
How do i add multiple column in the existing table . Please share me the syntax to add multiple colu
Author
Date within
1 day
3 days
1 week
2 weeks
1 month
2 months
6 months
1 year
of
Examples: Monday, today, last week, Mar 26, 3/26/04
Search
How do i add multiple column in the existing table . Please share me the syntax to add multiple colu
Soumya_Behera
October 2013
in
General Discussion
0
Comments
colin_loghin
✭
October 2013
Soumya,
This question can be answered with the SQL reverence manual.
Adding multiple columns can be run by running adding 1 column repeatedly.
As per SQL reference / SQL Statements / ALTER TABLE
CREATE TABLE test6 (a INT);
ALTER TABLE test6 ADD COLUMN b INT DEFAULT 5 NOT NULL;
Hope this helps.
0
Soumya_Behera
October 2013
What should i give in the Data source field.
0
Soumya_Behera
October 2013
Thanks for replying . Can you please suggest what should i give in data source column ?
0
Soumya_Behera
October 2013
Thanks . But i was asking for whether in single query we can add more column. Anyway we can do it one by one .
0
Leave a Comment
Bold
Italic
Strikethrough
Ordered list
Unordered list
Format
Spoiler
Code
Quote
Heading 2
Heading 1
Emoji
Url
Image
Align left
Align center
Align right
Toggle HTML view
Toggle full page
Toggle lights
Drop image/file
Home
•
General Discussion
Comment As ...
Comments
This question can be answered with the SQL reverence manual.
Adding multiple columns can be run by running adding 1 column repeatedly.
As per SQL reference / SQL Statements / ALTER TABLE Hope this helps.
Thanks for replying . Can you please suggest what should i give in data source column ?