How do i add 2 columns in MSSQL? f.ex username and password in the same table? Im sure its a silly question, but im a newbie in php and db'ing 😉
-- xerox
Try with this :
ALTER table TABLE_NAME ADD COL1 FIELD TYPE,COL2 FIELD TYPE;