Skip to main content
Filter by
Sorted by
Tagged with
2 votes
2 answers
94 views

I have an SQLite database - and to simplify, it has two tables:- recipe and ingredients. The recipe database is comprised of recipeId (autoincrement, primary index) title and the ingredients:- id (...
TTM's user avatar
  • 21
0 votes
0 answers
112 views

I am trying to customize some of the JetSmartFilters: the search filter and checkboxes filter (with the dropdown enabled), but I cannot find any option to customize the dropdown icon element (the ...
Maria's user avatar
  • 21
1 vote
2 answers
84 views

I'm working through an inner join example on Geeks For Geeks I came across a SELECT statement I don't understand. We have two tables, Student and StudentCourse we are joining on a common column ...
eschares's user avatar
  • 139
0 votes
1 answer
47 views

I've three selects The first shows product name. The list is generated by a mysqli_query <select id="product"> <option value="abc">ABC</option> <option ...
Marco Scarpa's user avatar
1 vote
3 answers
123 views

I have a dataset with id, test_date, test_type, test_result - like this: ID Test_Date Test_Type Test_Result 1 2024-03-21 A Fail 1 2024-04-21 A Fail 1 2024-04-30 A Pass 1 2025-05-15 B Fail 1 2025-05-31 ...
Ran Mo's user avatar
  • 21
0 votes
0 answers
59 views

I get an error if my createOptionForm (in a Filament Form Select) has a Select with a 'relationship' definition instead of an options definition. I get the same issue using a Fieldset (in the ...
Lochinvar's user avatar
  • 125
-6 votes
2 answers
119 views

My simple Oracle SQL select statement: select id, my_column from my_table; returns the following output with over 1.000.000 rows in the result set: | id | my_column | | 1 | abc.mno.xyz | | 2 | ...
Ann-Christin Lindras's user avatar
3 votes
3 answers
124 views

This is my table from SQL and the output that should be. What I need is to merge both dates and their entries. I tried both queries, IN and OUT, but unable to merge. IN: SELECT MAX(one.TOTAL_IN) ...
user31123186's user avatar
0 votes
1 answer
93 views

I have a table with below columns in PostgreSQL. id, location, store, flag1, flag2 Here id, location, store are contributing to Primary Key. So by default postgreSQL creates an index on it. I have ...
Prashant Aghara's user avatar
0 votes
0 answers
91 views

I'm working on a Windows TCP socket-based listener in C++ where the Listener() function runs in a separate thread. It waits for image frames from a detector device. I have implemented an Abort() ...
crazyfox's user avatar
2 votes
1 answer
110 views

I'm confused about the dplyr::select behaviour. Maybe I've missed a recent update to the function or am completely remembering it wrong, but I can't - at the same time - rename a set of columns while ...
deschen's user avatar
  • 11.6k
0 votes
0 answers
118 views

I'm quite new to Blazor and thereby also quite new to MudBlazor and now I get an error that I cannot figure out. My app.razor: <!DOCTYPE html> <html lang="en"> <head> &...
Benny Jørgensen's user avatar
3 votes
1 answer
79 views

Reproducible code snippet: #[tokio::main] async fn main() { let (tx, rx) = oneshot::channel(); let a = tokio::spawn(async move { tokio::select! { _ = rx => {} ...
Solaric's user avatar
  • 41
1 vote
1 answer
68 views

I need to search for multiple different strings in the same set of multiple columns in a MySQL table. Here's one way that works (CONCAT / CONCAT_WS): SELECT * from some_table WHERE LOCATE('word1', (...
rgg's user avatar
  • 21
0 votes
2 answers
103 views

I'm building a custom searchable dropdown component in React that works fine in general — but I'm facing a layout issue when it's used inside a popup modal/form. Here’s the problem: The popup form has ...
Viswajeth TSR's user avatar
0 votes
1 answer
95 views

I'm trying to implement a filter in a column to suppress some values based on several conditions, but the displayed results in the report are not totally correct. This is my formula: if {DailyReport....
Cleomari Mendez's user avatar
0 votes
1 answer
72 views

I've been trying to figure this out, but no such luck. Ultimately, I'm trying to create a macro that searches the Word document for each instance of String1, selects a range of text starting with that ...
Joel Cooper's user avatar
0 votes
1 answer
72 views

The following statement uses random() to produce two distinct values: select random(), random(); But the next statement outputs two equal values: select random(), random() order by random(); ...
Code4R7's user avatar
  • 3,156
0 votes
1 answer
136 views

Some stuff online like Selecting with Indexing is an anti-pattern in Polars: How to parse and transform (select/filter?) a CSV that seems to require so? suggests using indexing like df["a"] ...
qwr's user avatar
  • 11.6k
0 votes
1 answer
45 views

So I have a select from Vue Select, but what comes out is all object data, what I want is only the ID of the data, how can I get just the ID? here is my code const form = useForm({ name: '', ...
zaenal rfn's user avatar
1 vote
1 answer
55 views

I have a table in which a new record is added about once a second. The ID is missing from the table. The "Time" column shows the time in milliseconds, which is reset at the end of the day. ...
Alexandr X's user avatar
0 votes
2 answers
102 views

I've searched extensively, but I can't find a solution that meets all these objectives at once: I have hundreds of RData files located in different subfolders. In each of these RData files, I have a ...
denis's user avatar
  • 972
0 votes
1 answer
43 views

I'm trying to get a select to work for the following div: <div class="control-group generic-style clearfix"> <label for="Category">Category</label> <...
BobZ's user avatar
  • 51
-1 votes
1 answer
79 views

I've built a program that converts an Excel sheet containing my departments schedule to a SQL table. We always work in pairs so I want to be able to check all my shifts and what person I'll be working ...
HighestPie's user avatar
0 votes
1 answer
162 views

☐ SaaS ☐ OnPrem Options ☐ Cloud ☐ Hybrid ☐ Other My select dropdown contains parent options - SaaS ,On Prem and Other and My OnPrem contains 2 child options Cloud and Hybrid. On ...
Joe's user avatar
  • 113
0 votes
0 answers
115 views

I am working with SQL Server in Java code. I have a semi-large (16,000 items) ArrayList of objects, and I would like to do a SELECT on the table for all these objects. (The goal is to get surplus ...
Zimeon's user avatar
  • 29
-1 votes
3 answers
76 views

I have two tables with lots of columns, so I want to write dynamic query to find the same column names from both tables in single query in SQL. I have tried using intersect - but it cannot work. Is ...
Prasad Abhang's user avatar
1 vote
0 answers
19 views

I have a stored reference number, let's call the variable "my_index," in a table of variables. id var_name var_value 1 black #000005 2 domain example.com 3 my_index 3 I need to collect that ...
JBH's user avatar
  • 1,966
-1 votes
1 answer
69 views

I have 2 tables: comments_table id int(11) unsigned NOT NULL AUTO_INCREMENT, media_id int(11) unsigned DEFAULT NULL, user_id int(11) unsigned DEFAULT NULL,//user who commented title varchar(300) ...
Toniq's user avatar
  • 5,146
0 votes
0 answers
31 views

This is basically what is in the examples and my code: <ScrollView> <VStack className="px-8"> <Select isRequired> <SelectTrigger variant="outline&...
I NN_'s user avatar
  • 185
0 votes
0 answers
27 views

update: My application is big, there is many user interfaces,I need help in "Select" button where if select one of the chechbutton, it will display on previous Gui "window" the ...
Heba Abedalbaki's user avatar
2 votes
6 answers
258 views

I have an Oracle database table I cannot edit where - due to miscommunication - datetime values are ‘01-01-01 00:00:00,000000’ instead of null. I cannot change the data and it is too huge to make a ...
Thorbjørn Ravn Andersen's user avatar
-1 votes
1 answer
61 views

I am working on a site that displays all possible words from letters entered. There are words in the database up to 15 in length. Approximately 170,000 words. When I enter up to 8 letters, everything ...
Mark Bajanen's user avatar
0 votes
3 answers
139 views

I'm trying to show different text when selecting an option from a select, but it doesn't work. I'm trying to get the open button to display text 1, then depending on the option chosen the text changes,...
Yash's user avatar
  • 37
0 votes
0 answers
36 views

is there any way to create a select component like this? I have tried from MUI but the collapsible list is not taking the value.Mui select collapsible const getOperatorComponent = (value: ...
Nitheesh Shaju's user avatar
0 votes
2 answers
136 views

I am using Filament for my application, and I have a form with a Select field. This Select field lists Contact records, each related to a User. We are allowing users to add new contacts using the ...
Francis Frane's user avatar
2 votes
2 answers
82 views

Following is my query: SELECT 'INSERT INTO MyTable ( CancellationReason ) VALUES ( ''' + rc.CancelReason + ''' )' FROM AnotherTable a I get below result: Since the column a.CancelReason is ...
Raghavendra HG's user avatar
1 vote
3 answers
96 views

Assuming these two (simplified) tables: CREATE TABLE books ( book_id VARCHAR(25) NOT NULL, subgenre_1 VARCHAR(6) NOT NULL, subgenre_2 VARCHAR(6), subgenre_3 VARCHAR(6), mood_1 ...
Antonio Romo's user avatar
1 vote
1 answer
56 views

I'm creating a table based on survey data that asks respondents to rank their satisfaction with elements of an event. If a respondent indicated dissatisfaction with an element of the event, they ...
Mary Rachel's user avatar
0 votes
1 answer
55 views

I've tried changing many of the styles through sx property, but nothing seems to work. I just want to set all colors to black, as you can see. screenshot <Autocomplete ...
Artiyom Moskalew's user avatar
1 vote
1 answer
71 views

Consider the following DB: from sqlalchemy import String, select, create_engine from sqlalchemy.orm import DeclarativeBase, Mapped, mapped_column, Session class Base(DeclarativeBase): pass class ...
robertspierre's user avatar
0 votes
1 answer
45 views

I am attempting to do a column update in SQLite where if a certain string exists, update the column EXCEPT if it matches a particular string. Note, I can't use an EXCEPT statement in the select query ...
tpcolson's user avatar
  • 681
0 votes
0 answers
87 views

Im trying to copy initial table data around 100 to 200 GB to a file in text format.I created a connection-1 and started a transaction with isolation level REPEATABLE READ and exported a snapshot to ...
manjunath's user avatar
  • 336
0 votes
1 answer
75 views

I'm a noob at Applescript, but managed to get the first half of this script to just display the menu. The image is a mouse hover to display the UI Browser result. The syntax for clicking on a menu ...
bobzIlla's user avatar
  • 171
2 votes
3 answers
74 views

I have a Postgres SQL table that looks like the following: The index_constituents table: id date opening_closing ISIN 1 2016-05-03 O AAAAAA 2 2018-04-...
Patrick Chong's user avatar
1 vote
2 answers
85 views

I would like to paginate complex table by certain column. Lets say we have table as follows: ID | Name | Genre 1 | A | fantasy 2 | A | medieval 3 | B | sci-fi 4 | C | comedy 5 | C | sci-fi 6 | C ...
kkamil4sz's user avatar
  • 563
0 votes
1 answer
59 views

I am trying to populate a table with the consent values for two different places based on the same ID. So I have table A: id consent_value 111 Y 222 Y 333 N and table B: id ...
Johnny T's user avatar
1 vote
1 answer
108 views

Here is the scenario, one server handling multiple clients using select() few of the fds are very active(there are very much data coming on few) while other are normal active. Then will other fds ...
anand's user avatar
  • 287
1 vote
0 answers
36 views

I created a calendar with dates where appointments can be made. I then created a form to select appointments. I want each time an appointment is made, it to be grayed out for the exact day and time it ...
Decode's user avatar
  • 21
0 votes
0 answers
32 views

I've seen issues like this posted for older Sitecore versions, but none as recent as 10.3. When invoking the Browse trigger on an Image field in Sitecore CMS, the user gets the Select Media dialog. ...
Ron Ritchie's user avatar

1
2 3 4 5
771