Create a table to store the host and port information

From MyWiki
Revision as of 11:22, 22 January 2019 by George2 (Talk | contribs)

Jump to: navigation, search

ALTER TABLE table1 ADD COLUMN foo INT DEFAULT 0;

CREATE TABLE sslhosts
(
hostname VARCHAR(30),
port INT DEFAULT 443
)