175
Points
Questions
33
Answers
38
-
declare @x as xml ='<root> <n1>hello world</n1> <n2>A0001</n2> <n2>A0002</n2> <n2>A0003</n2> <n2>A0004</n2> </root>’ select xroot.value(‘(n1)[1]’, ‘varchar(255)’) as n1, xroot.query(‘n2/text()’) as n2 …
- 34 views
- 2 answers
- 0 votes
-
I’m trying to develop a mini program for WeChat (a large Chinese messaging and social media service). The only accepted …
- 44 views
- 0 answers
- 0 votes
-
I’m working on some xml validation. I’ve got element for which one of two elements is required, so I would …
- 39 views
- 0 answers
- 0 votes
-
I currently work on a project using .Net Core 3.1 for server and angular for the client. I`m storing my …
- 37 views
- 1 answers
- 0 votes
-
- 0 views
- 2 answers
- 0 votes
-
The bounty expires in 6 days. Answers to this question are eligible for a +100 reputation bounty. Squiggs. wants to …
- 46 views
- 1 answers
- 0 votes
-
I would like to get the number of employees that joined on a specific month. Below is my sample data. …
- 36 views
- 4 answers
- 0 votes
-
I currently have a wide dataframe that looks like this: Index ID1 ID2 Foc_A Foc_B Foc_C Sat_A Sat_B Sat_C 0 …
- 50 views
- 5 answers
- 0 votes
-
enter image description hereI am in the process of making a fantasy sports website. The django out-of-the-box User equals a …
- 0 views
- 1 answers
- 0 votes
-
I have a RGB image. I want to apply PCA for image-compression and see the output after the application. Here’s …
- 34 views
- 0 answers
- 0 votes