Skip to main content
Filter by
Sorted by
Tagged with
-2 votes
0 answers
16 views

I just realized that Laravel can run without starting XAMPP, which confuses me. I’m used to monitoring my database through phpMyAdmin, but since I don’t run XAMPP when using Laravel, I’m not sure ...
Bintang Fauzan's user avatar
Advice
0 votes
1 replies
57 views

We’re working with a user table populated from multiple SSO sources, and the data has inconsistencies that hinder generating standardized names. I need a persistent, automated way to extract and ...
John Doe's user avatar
Advice
0 votes
8 replies
128 views

I am designing a DB where basically parent can't exist without two children. E.g: Entity set Marriage, CAN'T exist without entity set Man and entity set Woman, but neither Man or Woman need Marriage ...
Theo's user avatar
  • 21
0 votes
1 answer
50 views

I have written a small Glue script that fetches some data between two dates, but I found that it scans the entire table instead of just the data within the specified time range. I also tried creating ...
new coderrrr's user avatar
Best practices
1 vote
6 replies
120 views

I have a list which consists of numeric values. In Python, it is written as: [959, 3480, 9346, 8367, 2847, 8330, 6946, 9586, 9722, 2775] Or in the case of MySQL: create table testtb(n int); insert ...
blabla_bingo's user avatar
  • 2,217
Advice
0 votes
8 replies
138 views

I am trying to set up a development and testing environment for the software of my new employer. The data is quite complex and due to some shortcuts/bad architecture decisions of the company that ...
Stefan L.'s user avatar
0 votes
0 answers
55 views

I have a dbt-core setup to connect to mysql database which is installed on a localhost on my personal machine. The connectivity from dbt-core to mysql was working fine until I recently upgraded dbt-...
Krishnan Ravi's user avatar
0 votes
0 answers
28 views

I'm writing a program to count attendance, and I have a table (att_events) containing the holidays in this format: Date | Description | Poster ID 2025-01-01 New Year Admin by using the ...
Kah Wai Choy's user avatar
1 vote
1 answer
62 views

Can someone explain why I'm getting two different results from the below two queries? Q1: SELECT match_no, COUNT(*) as "number of cards" FROM player_booked GROUP BY match_no ORDER BY "...
Plam Mir's user avatar
-8 votes
1 answer
120 views

I created 2 tables students and course, in course I want to add student_id as foreign key but I am adding the key after creating the table and it is showing error. Need help in solving this thing. ...
Annuvibha's user avatar
Best practices
3 votes
1 replies
107 views

I am creating an E-Commerce app. It has Category and Product classes. Both have multilingual descriptions, so, tables with title, description, meta-*, etc. and unique key (id, language_id). To add ...
qarabala's user avatar
  • 178
2 votes
1 answer
60 views

I'm working through my Data Management Applications labs and I'm stumped on one particular lab. I'm definitely missing something incredibly obvious, and I'd rather look dumb on the Internet than look ...
coconut's user avatar
  • 23
0 votes
0 answers
65 views

I would like to create a view in mysql who show the place of my order as text. This place is a json object (example {"sap_hold": 1, "in_licensing": 1}). I would like to add a ...
Fpasquer's user avatar
  • 414
4 votes
1 answer
131 views

I am very confused now, because I cannot get this to work. I have a tbl_address which already has longitude and latitude. I want to add a spatial index for my search. So I want to add a location POINT ...
Sylber's user avatar
  • 1,092
3 votes
1 answer
110 views

This gives a syntax error: read -p "entry: " entry sql="select concat('entry ', id) from mytbl where id = ?"; $mysql_conn "prepare stmnt from '${sql}'; set @id='${entry}'; ...
bungee1980's user avatar