public.surveyquestionanswers
Description
Columns
surveyid |
varchar(50) |
|
false |
|
|
|
conversationid |
varchar(50) |
|
false |
|
|
|
surveyformid |
varchar(50) |
|
true |
|
|
|
surveyname |
varchar(200) |
|
true |
|
|
|
agentid |
varchar(50) |
|
true |
|
|
|
agentteamid |
varchar(50) |
|
true |
|
|
|
queueid |
varchar(50) |
|
true |
|
|
|
questiongroupid |
varchar(50) |
|
true |
|
|
|
questiongroupname |
varchar(200) |
|
true |
|
|
|
questionid |
varchar(50) |
|
false |
|
|
|
questiontext |
varchar(400) |
|
true |
|
|
|
questiontype |
varchar(50) |
|
true |
|
|
|
questionanswerid |
varchar(50) |
|
true |
|
|
|
questionanswertext |
varchar(200) |
|
true |
|
|
|
questionanswervalue |
numeric(20,2) |
|
true |
|
|
|
questionscore |
numeric(20,2) |
|
true |
|
|
|
questionmarkedna |
bit(1) |
|
true |
|
|
|
updated |
timestamp without time zone |
|
true |
|
|
|
Constraints
surveyquestionanswers_pkey |
PRIMARY KEY |
PRIMARY KEY (surveyid, questionid) |
Indexes
surveyquestionanswers_pkey |
CREATE UNIQUE INDEX surveyquestionanswers_pkey ON public.surveyquestionanswers USING btree (surveyid, questionid) |
Related Articles
public.vwsurveyquestionanswers
Description Survey Question Answers View Table Definition CREATE VIEW vwsurveyquestionanswers AS ( SELECT surveyquestionanswers.surveyid, surveyquestionanswers.conversationid, survey.completeddate, survey.completeddateltc, ...
public.mvwconvvoiceoverviewdata
Description Columns Name Type Default Nullable Children Parents Comment conversationid varchar(50) false sentimentscore numeric(20,2) true sentimenttrend numeric(20,2) true agentdurationpercentage numeric(20,2) true customerdurationpercentage ...
public.mvwconvvoicesentimentdetaildata
Description Columns Name Type Default Nullable Children Parents Comment keyid varchar(100) false conversationid varchar(50) true starttime timestamp without time zone true starttimeltc timestamp without time zone true duration numeric(20,2) true ...
public.vwteammemberdata
Description Team Member Data View Table Definition CREATE VIEW vwteammemberdata AS ( SELECT tm.userid, ud.name AS "Agent Name", td.name AS "Team Name" FROM ((teammemberdata tm LEFT JOIN vwuserdetail ud ON (((tm.userid)::text = (ud.id)::text))) LEFT ...
public.jobminimumdefinition
Description Columns Name Type Default Nullable Children Parents Comment jobid integer nextval(‘jobminimumdefinition_jobid_seq’::regclass) false jobname varchar(255) true maxsyncspan varchar(50) true lookbackspan varchar(50) true Constraints Name Type ...