
Typo in the SQL above (copy/paste error)
SELECT
'1. In the last month, how often was your favorite color green?' ListName
, 'Never' OptionName
, NULL SelectedYN
, 1 ListDisplaySequence
, 1 OptionDisplaySequence
UNION SELECT
'1. In the last month, how often was your favorite color green?' ListName
, 'Almost Never' OptionName
, 1 SelectedYN
, 1 ListDisplaySequence
, 2 OptionDisplaySequence
UNION SELECT
'1. In the last month, how often was your favorite color green?' ListName
, 'Sometimes' OptionName
, NULL SelectedYN
, 1 ListDisplaySequence
, 3 OptionDisplaySequence
UNION SELECT
'1. In the last month, how often was your favorite color green?' ListName
, 'Fairly Often' OptionName
, NULL SelectedYN
, 1 ListDisplaySequence
, 4 OptionDisplaySequence
UNION SELECT
'1. In the last month, how often was your favorite color green?' ListName
, 'Very Often' OptionName
, NULL SelectedYN
, 1 ListDisplaySequence
, 5 OptionDisplaySequence
UNION SELECT
'2. In the last month, how often did you drive a car?' ListName
, 'Never' OptionName
, 1 SelectedYN
, 2 ListDisplaySequence
, 1 OptionDisplaySequence
UNION SELECT
'2. In the last month, how often did you drive a car?' ListName
, 'Almost Never' OptionName
, NULL SelectedYN
, 2 ListDisplaySequence
, 2 OptionDisplaySequence
UNION SELECT
'2. In the last month, how often did you drive a car?' ListName
, 'Sometimes' OptionName
, NULL SelectedYN
, 2 ListDisplaySequence
, 3 OptionDisplaySequence
UNION SELECT
'2. In the last month, how often did you drive a car?' ListName
, 'Fairly Often' OptionName
, NULL SelectedYN
, 2 ListDisplaySequence
, 4 OptionDisplaySequence
UNION SELECT
'2. In the last month, how often did you drive a car?' ListName
, 'Very Often' OptionName
, NULL SelectedYN
, 2 ListDisplaySequence
, 5 OptionDisplaySequence
UNION SELECT
'3. In the last month, how often did you have a fantastic idea?' ListName
, 'Never' OptionName
, NULL SelectedYN
, 3 ListDisplaySequence
, 1 OptionDisplaySequence
UNION SELECT
'3. In the last month, how often did you have a fantastic idea?' ListName
, 'Almost Never' OptionName
, NULL SelectedYN
, 3 ListDisplaySequence
, 2 OptionDisplaySequence
UNION SELECT
'3. In the last month, how often did you have a fantastic idea?' ListName
, 'Sometimes' OptionName
, NULL SelectedYN
, 3 ListDisplaySequence
, 3 OptionDisplaySequence
UNION SELECT
'3. In the last month, how often did you have a fantastic idea?' ListName
, 'Fairly Often' OptionName
, NULL SelectedYN
, 3 ListDisplaySequence
, 4 OptionDisplaySequence
UNION SELECT
'3. In the last month, how often did you have a fantastic idea?' ListName
, 'Very Often' OptionName
, 1 SelectedYN
, 3 ListDisplaySequence
, 5 OptionDisplaySequence
ORDER BY
ListDisplaySequence
, OptionDisplaySequence