Skip to content

Tag: sql

Is there a way I can get output of count values in MySql?

I am dealing with getting the output of some common values. My database is quite big so I am just giving a dummy database here for understanding purposes. Here is the table I have: I have to extract only those variables that have the given common room numbers alotted. This is the table for the required data: …

How can I run this SELECT query?

I’m working on a Messaging feature for an application, and I have a the following tables in MSSQL, along with a User table (not listed): I want to query the ThreadParticipant table for whether or not a thread exists containing only a given set of user ids, let’s say users 1,3,5,7. Each Thread cont…

Laravel Eloquent Join Using Another table

Hi how to convert this SQL query to Laravel Eloquent? I have three table: payments, devices and users. Payments table does not store user_id. but table has device_id. And device table also has user_id. I want to get user name which made payment. Answer it’s very easy Another way is: We have three models…

Find average SQL statement multiple tables

Trying to get the average with a amount of times a user has purchases brocolli and then with the price at that time. A 0 if the user has not purchased any. This is working and saying it can’t see the Name column. What am I missing? EDIT I also tried simplifying to just use the purchasers table and get

Character with Bit/hex confusion in DB2

This works: SELECT TASKT_ID FROM DATA . TASKT WHERE TASK_WEB_IDENTIFIER = CAST ( HEXTORAW ( ‘0213725501A421D384233E5001’ ) AS CHAR ( 26 ) ) ; Since that work I put it into the procedure: BEGIN …