Question : Create table for the following:

tbl_lookup_field_ticket_location_sims
values list in dropdown,
Canada;
US;
US and Canada;
Overseas

Answer : Create table for the following:

simple example

CREATE TABLE tbl_lookup_field_ticket_location_sims
(country char(50))
go
insert into  tbl_lookup_field_ticket_location_sims (column1)

VALUES 'Canada
go

insert into  tbl_lookup_field_ticket_location_sims (column1)

VALUES 'US'

etc
Random Solutions  
 
programming4us programming4us