Skip to content

Tag: sql

Creating a cumulative sum column with_order in R

I’m working alongside a SQL tutorial using queryparser and tidyquery in R. This has been going well until I was asked to do: Tidyquery reported that it did not support OVER functions so I am trying to replicate the OVER (PARTITION BY…) function with dplyr. This led me to with_order(order_by =&#823…

Counting Rows Includes JSON by Id in Codeigniter

We have one groups table name as “groups” (There is mail groups) We have one person table name as “person” (There is persons who has in mail groups) We saved person in the “person” table with json_encode by group ID. Because a person can belong to more than one group. The p…

Create view with one row for each column in a table

I have a table that looks like this: I need a view with 3 columns, that has a row for each column in the original table, so it would look like this: The values on the currency column in the view need to be created by me (the EUR, JPY, etc) and are fixed values; I need to get the

sql query to pl sql procedure

this is my requirement .i want fetch the record from one table and store it in another temporary table.i wrote as query.but dont know how to make it as procedure by declaring varibales and so. Daily new customers data will gets inserted in table.I only want to fetch the customer data who signed attribute_valu…

Select corresponding column based on columns

In MySQL, I try to select a corresponding value based on the greatest value between columns. Let’s take as example table ‘prices’: id supplier price1 quantity1 1 Microsoft 8,27 1000 1 Apple 10,25 2000 1 IBM 12,25 3000 2 Microsoft 9,45 2000 2 Apple 7,55 4000 2 IBM 6,78 6000 The result I inten…