-- Create the table for Net Connection CREATE TABLE NetConnection ( Provider VARCHAR(50), Speed VARCHAR(20) ) -- Populate the Table INSERT INTO NetConnection( Provider, Speed ) SELECT 'World Wide Internet Providers', '512 KBPS' -- Create table for DB Connection CREATE TABLE DbConnection ( Provider VARCHAR(50), Protocol VARCHAR(20), [Authentication] VARCHAR(20) ) -- Populate the Table INSERT INTO DbConnection ( Provider, Protocol, [Authentication] ) SELECT 'SQL Client Provider', 'TCP/IP', 'Windows'