Skip to content

Tag: sql

SQL – Selecting from a multiples values field

I’m using Teampass, here is a minimised example of the tables schema Teampass_Roles_Title : and Teampass_Users the numbers in fonction_id are the ids from the table Teampass_Roles_Title Instead of using an intermediate table, they opted for this model, and I dont know if there is any way to have for exa…

Best technology for building race simulation application

I am trying to do something new, something I have never done before. I am looking for advice or point me into right direction how to choose technology. I am trying to build race simulation app that will have thousands of iot devices streaming data into central platform. While I understand that I can use some …

Spliting Name in Google BigQuery

Split FullName into firstName and lastName. I want to split the full name based on “,” into firstName and LastName. anything before “,” should be selected as firstName and anything “,” should be the lastName. I used split(fullName) function and used offset to grab the first…