I have some query that I need to pass to another query using query builder $query = DB::table('table')->whereIn('some_field', [1,2,30])->toSql(); Model::
I have written an IoT Edge C++ module that is sending the event output using the following function call: bool IoTEdgeClient::sendMessageAsync(std::string messa
Hell everyone, I'm trying to validate XML against schema using the delphi procedure, but I'm getting sort of errors like: the node is not correct neither incorr
I am trying to do a little exercise where I have an application that opens at a port, people can connect to it either with Telnet or Ncat, and they send a strin
This is my table structure: CREATE TABLE StudesntMarkList ( StudentID int, StudentName varchar(100), Performance varchar(100), class varchar(
(Couldn't find a tutorial or clear description of this in guides like REST API Tutorial and StackOverflow's blog on REST API best practices, and a SO question o
If a is numpy array of shape (5,3), b is of shape (2,2) and c is of shape (2,2), what is the shape of a[b,c]? Can anyone explain this to me with an example. I'
I have a simple dataframe like below: dict1 = {'student name':['A','B','C','D','E'], 'math':[0,9,0,6,7], 'Eng' :[0,6,7,8,9],