Explore

sql ×
  • Scroll through complete life cycle of ML application developed for manufacturing facility to predict life of their product

    Predicting the Lifespan of Communication Devices : Overview of life cycle of Machine Learning project for...

  • screenshot

    Unexpected token "BIGINT" while creating database (DB2 LUW)

    This is a simple sql command that I want to run: CREATE TABLE USERMNGR.AUTHORIZED_CLIENT ( ID...

  • screenshot

    SQL queue doesn't start activation procedure SQL Server

    SQL Server 2019 I'm trying to start stored procedures from a trigger (so that the trigger...

  • screenshot

    Writing query in CTE returning the wrong output

    I have written a SQL query to find prev year sales one using lag and with...

  • screenshot

    I am getting error in sql query ORA-01847: day of month must be between 1 and last day of month

    INSERT INTO MANPOWER.VIPBADGE ( DOC_SRL, GRP_CD, DOC_TYPE, REC_TYPE, MV_MT, VESS_NAME, VESS_TYPE, IMO_NO, CALL_SIGN, REG_PORT, AGENCY_FUN_CD, AGENCY_CD,...

  • screenshot

    How can I specify the columns returned by DESCRIBE TABLE?

    I know I can do describe table a_table to describe the columns in a table in...

  • screenshot

    MySQL - Operand should contain 1 column(s)

    I believe you all are doing well! I am trying to execute a nested query in...

  • screenshot

    Why does having GROUP BY in an IN clause cause the query to become unexecutable?

    SELECT id, user_id, item_id FROM questionnaire_answer_old_0 WHERE item_id IN ( SELECT item_id FROM questionnaire_answer_old_0 GROUP BY...

  • screenshot

    Entity Framework deadlock when fulltext CONTAINS is part of query

    We have an issue with a select query being deadlock victim when run from entity FW....

  • screenshot

    Get the last non null value?

    I have a table that continues Client IDs and records a score based on their result....

  • Researchers, please replace SQLite with DuckDB now

    You are a researcher, potentially in the life or social sciences, and your organization offers you...

  • screenshot

    MO| Why is shuffle support needed?

    The basic principle of the shuffle algorithm is to bucket the input data, where each bucket’s...

  • screenshot

    How to execute an SQL query based on results of another query

    I have an SQL query that returns a column of values, e.g.: id | 1 val01...

  • screenshot

    Every Developer Should Learn to Give Up Sooner

    Jeffy's search dilemma highlights the importance of knowing when to give up during developer searches. By...

  • screenshot

    Database Management: Creating and Granting User Access in Oracle

    Oftentimes, colleagues from different departments need quick access to specific datasets. The traditional method of exporting...

  • screenshot

    SQL Database Table relation based on multiple conditions

    First off all, I am relatively new to databases, especially with higher complexity. I am working...

  • screenshot

    Store formatted MS Word text to MySQL database and retrieve it into new document

    I'm able to use VBA, or VBScript, or python-docx, or pandas (when saving a Word file...

  • screenshot

    Using DynamoDB and Rockset to Build a Fast, Delightful Application Experience

    How to use DynamoDB and Rockset together to build a fast, delightful application experience for users.

  • screenshot

    How you debug Stored Procedure having optimization issues in sql server?

    I am having an interview question related to query optimization in sql server and the questions...

  • screenshot

    Write an SQL query to check there is employee detail records change with different DateStart 1 month

    Kindly help to make query employee detail records change with different DateStart 1 month Example Data...

  • screenshot

    Select substring of multiple rows with similar values

    I am trying to select same substring of multiple rows without specifying the substring first. Basically...

  • screenshot

    Simple task for PostgreSQL

    here is the task. Calculate how much on average a customer with a bracelet (field bracelet_id)...

  • screenshot

    How to calculate the fraction of rows fulfilling some criteria in Postgresql?

    I would like to calculate the fraction of rows fulfilling some criteria. So something like this:...

  • screenshot

    Return all rows if -1 is passed, otherwise rows that match the value

    I have the below SQL query, where I want to return all rows of the table...