Complete the code to create a parameter that allows users to select a number.
CREATE PARAMETER 'NumberSelector' AS [1];
The parameter type should be Integer to allow number selection.
Complete the code to set the parameter's allowable values to a list of fixed options.
CREATE PARAMETER 'RegionSelector' ALLOWABLE VALUES [1] ('East', 'West', 'North', 'South');
Use List to specify fixed options for the parameter.
Fix the error in the parameter creation code to correctly set the default value to 10.
CREATE PARAMETER 'SalesThreshold' AS Integer DEFAULT [1];
The default value should be a number without quotes for Integer type.
Fill both blanks to create a parameter that allows a range of dates from 2020-01-01 to 2020-12-31.
CREATE PARAMETER 'DateRange' AS Date ALLOWABLE VALUES [1] ([2]);
Use Range for dates and specify start and end dates in correct order.
Fill all three blanks to create a parameter named 'DiscountRate' of type Float with a default value of 0.05 and allowable values from 0.0 to 0.1.
CREATE PARAMETER 'DiscountRate' AS [1] DEFAULT [2] ALLOWABLE VALUES [3] (0.0, 0.1);
The parameter type is Float, default value is 0.05, and allowable values are a Range.