Skip to content

Tag: sql

Insert ordinal number

MySQL 5.7 Consider the following sample data: CREATE TABLE catalog_product_entity_media_gallery ( `value` VARCHAR(24), `entity_id` INTEGER ); INSERT INTO catalog_product_entity_media_gallery (…

How to Group By in SQL Server Query

I’m using this query to get the Sum of SaleAmount for each type (SOType) of Sale Invoices. I am getting the result but the result is not grouped by SOType. Have tried to use Group by Outside the query …

How to update a column based on values of other columns

I have a tables as below I have to update var_start_date column with min(reporting_date) for each combination of id,code,sub_code and item_nbr only till variance field is zero. Row with variance = 0 should have null var_start_date. and next row after that should have next min(var_start_date.). FYI, variance i…