【单选题】
设有表T,现要为该表新增加一个列,列名为:c1,类型为int。能正确实现该功能的语句是( )。
①
ALTER TABLE T ADD c1 int
②
ALTER TABLE T ADD (c1 int)
③
ALTER TABLE T ADD COLUMN c1 int
④
ALTER TABLE T ADD COLUMN (c1 int)
【多选题】
下列选项中,( )可以打开一个无状态栏的页面。
①
window.open(advert.html);
②
window.open(advert.html,广告,toolbar=1,scrollbars=0,status=1);
③
window.open(advert.html,,scrollbars=1,location=0,resizable=1);
④
window.open(advert.html,,toolbars=0, scrollbars=1, location=1, status=no);