Yes, the final output is to a table node on a dashboard.
The input data is coming from a telnet session (TCP node) that I'm reading data from and that data is coming from another flow via a link so importing the flow here would probably not be the complete picture for data coming into the flow, but here is the code.
This is also why you see the table "addData" and returnpromise objects in the payload. It's coming from another flow and it's being added to another table in another flow.
[{"id":"9f469e68.6e13f","type":"sqlite","z":"f55cb29c.3fc26","mydb":"b30a749d.aef0d8","sqlquery":"msg.topic","sql":" select state from fcc where callsign=\"msg.payload\"","name":"FCC Database","x":1460,"y":180,"wires":[["f3445173.eae3d","f6a138a8.22f968"]]},{"id":"690324a0.e6630c","type":"template","z":"f55cb29c.3fc26","name":"","field":"topic","fieldType":"msg","format":"handlebars","syntax":"mustache","template":"select state from fcc where callsign='{{payload}}'","output":"str","x":1240,"y":180,"wires":[["9f469e68.6e13f"]]},{"id":"864a2180.57d3","type":"link in","z":"f55cb29c.3fc26","name":"Database Lookup In","links":["4fc5bc17.1961c4","869cd822.2e3438","aac64a7d.080918","b338b8f3.498b48","b4e80940.9cb2f8","b5b51e9a.e30e5"],"x":135,"y":240,"wires":[["b98c6b84.83c8a8"]]},{"id":"916294b3.2b9b08","type":"switch","z":"f55cb29c.3fc26","name":"Only MO 1x1, K & VE/VA Calls","property":"payload.arguments[0].call","propertyType":"msg","rules":[{"t":"regex","v":"^[KNW]{1}[0]{1}[A-Z]{1}","vt":"str","case":true},{"t":"regex","v":"^[A]{1}[A-L]{1}","vt":"str","case":true},{"t":"regex","v":"^[KNW]{1}[A-Z0-9]{4,}","vt":"str","case":true},{"t":"regex","v":"^[V,C]{1}[E,Y,O]{1}","vt":"str","case":true}],"checkall":"false","repair":true,"outputs":4,"x":510,"y":240,"wires":[["4f3bdcab.5b90c4"],["4f3bdcab.5b90c4","a2378cc0.25cdd"],["4f3bdcab.5b90c4","a2378cc0.25cdd","c551df74.7cd24"],["4f3bdcab.5b90c4"]]},{"id":"b98c6b84.83c8a8","type":"string","z":"f55cb29c.3fc26","name":"","methods":[{"name":"collapseWhitespace","params":[]}],"prop":"payload.arguments[0].call","propout":"payload.arguments[0].call","object":"msg","objectout":"msg","x":250,"y":240,"wires":[["916294b3.2b9b08"]]},{"id":"cae9698a.eeec78","type":"debug","z":"f55cb29c.3fc26","name":"","active":false,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":1910,"y":180,"wires":[]},{"id":"8ea451e.cfd4cb","type":"change","z":"f55cb29c.3fc26","name":"","rules":[{"t":"set","p":"payload","pt":"msg","to":"payload[0].call","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":1040,"y":180,"wires":[["690324a0.e6630c"]]},{"id":"f3445173.eae3d","type":"join","z":"f55cb29c.3fc26","name":"","mode":"auto","build":"string","property":"payload","propertyType":"msg","key":"topic","joiner":"\\n","joinerType":"str","accumulate":false,"timeout":"","count":"","reduceRight":false,"reduceExp":"","reduceInit":"","reduceInitType":"","reduceFixup":"","x":1750,"y":180,"wires":[["cae9698a.eeec78"]]},{"id":"a2378cc0.25cdd","type":"split","z":"f55cb29c.3fc26","name":"","splt":"state","spltType":"str","arraySplt":1,"arraySpltType":"len","stream":false,"addname":"payload.arguments[0].call","x":830,"y":180,"wires":[["8ea451e.cfd4cb","1939227d.50beee"]]},{"id":"f6a138a8.22f968","type":"debug","z":"f55cb29c.3fc26","name":"","active":false,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":1680,"y":140,"wires":[]},{"id":"1939227d.50beee","type":"debug","z":"f55cb29c.3fc26","name":"","active":false,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":1000,"y":140,"wires":[]},{"id":"c551df74.7cd24","type":"debug","z":"f55cb29c.3fc26","name":"","active":false,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":1150,"y":240,"wires":[]},{"id":"b30a749d.aef0d8","type":"sqlitedb","db":"fcc.db","mode":"RWC"}]
Here is the whole debug from the following flow.
I've been playing around with the split node and I don't understand this in the split as this might be hanging me up.

I'm still kinda lost....I obviously have limited programming experience and I'm getting into more advanced features to obtain my goal here.