Skip to content
Advertisement

Tag: sql

DataGridView selected row to check a checkbox

I am currently trying to check a checkbox dependent of the SQL data after selecting the row in a datagridview. I have gotten this to display text with TexBoxes, but cannot get it to check a check box. Yes = True No = False Any recommendations, would be very much appreciated. The table being displayed is bound by’binding source’ the

Why does this suggested solution prefer a different way of calculating percentages based on aggregations?

I’m working through a problem set from CMU’s public db systems course. I have the following two tables: Order Id CustomerId EmployeeId OrderDate RequiredDate ShippedDate ShipVia Freight ShipName ShipAddress ShipCity ShipRegion ShipPostalCode ShipCountry 10248 VINET 5 2012-07-04 2012-08-01 2012-07-16 3 16.75 Vins et alcools Chevalier 59 rue de l’Abbaye Reims Western Europe 51100 France 10249 TOMSP 6 2012-07-05 2012-08-16 2012-07-10

Checking if two values in Query are the same, makes Query very slow

My Goal: A Query, which provides all provinces, in which a building is constructing. My Problem: As soon as I make sure that every building is compared to the same building (comparing upgrade_id) the Query takes forever. Without the last part of the where statement it takes 1 sec, which is totally fine. Table Setup Provinces change from time to

MySQL Select Count of Duplicate Value In Relation Table

I have 3 tables: foods, order_detail, and orders Here are the records for table foods: Here are the records for table order_detail: And here are the records for orders table: I want to show count order detail grouped by food type. I expected this result: Here is my approach, but it still doesn’t show the expected result. The result is:

How do I take user inputs in CASE statements in SQL?

This is the query I’m trying to execute in SQL Developer, but I get an error: Error at Command Line : 2 Column : 7 Error report – SQL Error: ORA-00904: “INPUT”: invalid identifier 00904. 00000 – “%s: invalid identifier” Can anyone help me out? Answer As Alex commented, if you want to use that substitution variable twice, you’d rather

How to persist SQL Server system table records?

I am running a query that returns the last execution time for a stored procedure: I am getting the correct results, but if I run the query again in around 30 seconds, I don’t get any results. Is there a setting or command I need to set or add to persist the results? My goal is to find out what

Advertisement