Skip to content

Split a single sql column into five

I’m trying to split one column into up to five around the ” > ” delimiter but the things I’ve tried haven’tw orked: I tried select id, compoundColumn, split(compoundColumn,” > “)[1] as “first” …

How to Join 3 Tabels in Sqlserver

I tried to join 3 tables all together but when I execute the query only the first row on the table is displayed. The table consists of many rows. How can I display multiple rows? This is the code that I tried Member table enter image description here Books table enter image description here lend table enter i…