Skip to main content

Questions tagged [mysql]

MySQL is an open-source, relational database management system. If your PHP code uses MySQLi, use the MySQLi tag instead.

Filter by
Sorted by
Tagged with
4 votes
2 answers
146 views

This is a follow up question to Inserting and retrieving data MySql Database access in C++ using Boost::ASIO and Boost::MySQL. I have reduced the amount of code to be reviewed by presenting only one ...
pacmaninbw's user avatar
  • 26.2k
2 votes
1 answer
91 views

About the Project This was a go/no go prototype for a project that would store the data a combined personal planner software with project planning software in a relational database. It was also a ...
pacmaninbw's user avatar
  • 26.2k
1 vote
0 answers
73 views

About the Project This is a unit test and a prototype for the database portion of a project that would store the data a combined personal planner software with project planning software in a ...
pacmaninbw's user avatar
  • 26.2k
2 votes
1 answer
70 views

I'm prototyping/debugging some C++ code that I may turn into a longtime project. The build system is ready for review, the prototype is not. The GitHub repository for the code listed below. Like all ...
pacmaninbw's user avatar
  • 26.2k
6 votes
2 answers
739 views

Here's my (correct) solution to a HackerRank question: Weather Observation Station 8 Query the list of CITY names from STATION which have vowels (i.e., a, e, i, o, and u) as both their first and last ...
JTB's user avatar
  • 277
3 votes
1 answer
103 views

When MySQL executes a Data Modification Query, it provides some additional info on the outcome, which is usually displayed in the console. This info is also being exposed through MySQL C API and this ...
Your Common Sense's user avatar
5 votes
3 answers
1k views

I have written the below query in order to identify how many events (occur over a week) in each hour. ...
Danny Goodall's user avatar
4 votes
2 answers
500 views

I am working on an in-house application, and I am working on how our application communicates with our remote server. I have a PHP script that acts as an API to call to our MySQL DB and dump its ...
Cory Green's user avatar
7 votes
4 answers
2k views

In this program I'm defining functions to perform different tasks on a data record book for employees. Here is a summary of the code: Intro() to make the presentation of the home page. create_record()...
Abhisikta Ray's user avatar
1 vote
0 answers
86 views

I had to design a connection pool that handles Boost MySQL connection to use the asynchronous functions. Here is the code: ...
Reda's user avatar
  • 41
3 votes
1 answer
166 views

I have a table that tracks state changes of an entity with timestamps. The schema of the table is as follows: entityid userid originalvalue newvalue changetime 255 101 Draft Submitted 2023-11-28 12:10:...
Fatal Error's user avatar
4 votes
1 answer
154 views

I am working on a project that involves tracking the operating hours of businesses across different timezones. Some of these businesses operate past midnight, and to accommodate this, operating hours ...
tony's user avatar
  • 433
2 votes
1 answer
277 views

My database structure is: ...
friday-json's user avatar
8 votes
3 answers
1k views

I wrote a simple PHP login form for a website. It has an initialization script, as well as a form to allow a user to login, plus a link to log the user out after logging in. ...
whiteman808's user avatar
3 votes
1 answer
141 views

I think the only big improvement that can be made is to check which shard to query based on the userIds of the followed users. One easy way is to check the last ...
user avatar
3 votes
1 answer
130 views

I have written recently the SQL query to MariaDB that I want to move into PHP code. Below is my test.sql file. What do you think about my SQL code? ...
whiteman808's user avatar
2 votes
1 answer
102 views

I have a database with the following hierarchy. A dataset can have multiple scans (foreign key scan.id_dataset -> dataset.id) A scan can have multiple labels (<...
Roland Deschain's user avatar
1 vote
1 answer
132 views

I’m using mySQL to create and adjacency list model type of table. I have only one level, that is a parent with children, like this: ...
Marco's user avatar
  • 239
0 votes
1 answer
103 views

Now i have a fully functional PHP codes for login and registeration i was wondering if anyone could offer improvements to the code The code: Config.php: ...
Bebo's user avatar
  • 47
0 votes
1 answer
213 views

So I've implemented the suggestions in Original question And now my code looks like this: ...
Bebo's user avatar
  • 47
2 votes
1 answer
170 views

The code below is modified slightly from the code in this previous post. I believe the code below could be improved and more secured but i don't know how so someone please show me how an improved ...
Bebo's user avatar
  • 47
0 votes
1 answer
305 views

My code is working however it seems to be using old outdated php version so less secure and I'm still new to programming so I'd be more than thankful if someone shows me how an improved updated and ...
Bebo's user avatar
  • 47
3 votes
1 answer
445 views

I built RESTFUL api for a blog using java and spring boot(without a frontend). What it does the code manages all the http methods on a post inside the blog and comments on that post. the post consists ...
Ellie's user avatar
  • 597
-1 votes
1 answer
296 views

im using spring boot and CrudRepository for my queries, the project is about posting content on a blog, so I have a post record with id, creator name, post name, the content itself likes and dislikes: ...
Ellie's user avatar
  • 597
5 votes
3 answers
2k views

I've created a unique page counter using a PHP script. Pages could be videos, images, publications, etc. Every time a new user views a page, I record the entry and increment the view counter. I cannot ...
Marco's user avatar
  • 239
1 vote
2 answers
122 views

here is my first virsion question: Is it good practice to have all my back end in one single file with all functions being static? ...
Ellie's user avatar
  • 597
3 votes
1 answer
299 views

I've never had my code reviewed before, so I am taking this opportunity to see what can be improved with my coding style. I am still somewhat "new" to PHP, in the sense that I'm an old dog ...
Bellator's user avatar
  • 131
3 votes
0 answers
114 views

I've got a series of tables with monthly data on USA regions over about 130 years, divided by either climate divisions (clim_div) or other federal standards (ncdc_fips). They all follow the same ...
DownrightBass's user avatar
-3 votes
1 answer
125 views

I had a login code like this: ...
Bazim's user avatar
  • 17
1 vote
1 answer
435 views

I'm building a Laravel app (with Vue3 and InertiaJS), and I'm attempting to create relationships between three models: User Area WorkHours where WorkHours is the ...
wonder95's user avatar
  • 121
1 vote
1 answer
98 views

I am working on a sql query for the following scenario: Get all available offers for registered demand (offers from profiles should not be from profile which had registered demand). After that get ...
Gleichmut's user avatar
  • 121
3 votes
1 answer
133 views

I'm currently working on a company management system as a university project, and I have to get my hands in java.sql. I have come to struggle with extracting a ...
Thomas Herondale's user avatar
4 votes
3 answers
446 views

Project description I'm making a website listing products. The listing goes as following (See here): Product name Shop name Price in that shop If the product appears multiple times in the table for ...
Alpha.Ars's user avatar
9 votes
5 answers
2k views

I haven't used Unix, etc. for 40 years, so I am a bit rusty. I need to back up the databases on my website(s) once a week and then retrieve them automatically from my development machine. So this is ...
Rohit Gupta's user avatar
4 votes
4 answers
590 views

I wrote a list of functions in PHP that I want to use in my pet project as an autoloaded file for all parts of the app. The purpose of these function is to shorten the code you write for MySQL queries ...
Syed M. Sannan's user avatar
0 votes
2 answers
153 views

In the posts I have a date field and a start and end date range. I need to query if it matches date or if it matches between the dates in the range. This Query works, but how can I optimize? ...
cRiSs rOcCa's user avatar
0 votes
2 answers
221 views

Version 2: Display visitor's number on your web page (changed code after getting answer for first version). The first version is here: Display visitor's number on your web page The "visitors&...
user avatar
0 votes
1 answer
313 views

Display visitor's number on your web page. The "visitors" table has only one column (visitor_count) and only one row. The column's initial value is 0. I know goto should not be used but then ...
user avatar
3 votes
1 answer
278 views

I am reviewing the database class for a live website. I am not sure if the current connect function is the best way to create a pdo object as it appears to create a new connection every time it is ...
jdf's user avatar
  • 31
5 votes
1 answer
123 views

Make a procedure called paintletter, it receives two parameters, a letter and a number. it will have to paint on the screen lines with the specified letters starting with a letter and ending with as ...
Javier G.Raya's user avatar
3 votes
1 answer
85 views

Create a function called GETLYRICS, which will receive as parameters a word of at most 15 letters and a number. It must return the letter of the position indicated in the number. My exercise is fine ...
Javier G.Raya's user avatar
2 votes
1 answer
745 views

I've 2 tables emp and expenditure. Emp: ID, NAME Expenditure: ID, EMP_ID, AMOUNT Each emp has a limit of 100 that he/she can ...
reiley's user avatar
  • 137
2 votes
1 answer
281 views

I have a pivot table called invite_riskarea which is designed as follows: This table stores the permissions that have a specific user (through an invite id) to ...
sfarzoso's user avatar
  • 117
-3 votes
1 answer
80 views

...
The concise's user avatar
2 votes
1 answer
53 views

I have written this shell script to backup MySQL database to disk. It works fine but I am not well proficient in shell scripting. So what do you think can it be improved? ...
Chang Zhao's user avatar
1 vote
2 answers
137 views

I'm having trouble making WHERE IN query work, I was only able to make it work as a foreach loop. My payload looks like this: sku[]: BOOK0002 sku[]: BOOK0003 My ...
Metwesh's user avatar
  • 21
1 vote
1 answer
196 views

I'm looking for best practices for writing secure session managers. I'm making a table for the authorization token (UUID OR GUIDv4) with autoincrement, user_id, token, status (enum) then update status ...
Taa Lee's user avatar
  • 37
1 vote
1 answer
176 views

I want to know if that code is correct and readable. In class avatar the method getAvatar() validates the data. It checks if the field is not empty and if the photo extension is correct. If not, an ...
user254603's user avatar
2 votes
1 answer
110 views

I have a solution for a question I asked on SO: I am trying to create a database where I also need to find the time difference inside a record. However, timediff() ...
Memo Haldan's user avatar

1
2 3 4 5
22