mysql tag

409 questions


1 answers
29 views
0
When you need to keep querying in a repeat statement

There are two tables, A and B.A is a post, and B is a comment on the post. Like a typical bulletin board, a list of posts is printed, and I want to print a list of comments at the bottom of each list ...

2 years ago

1 answers
33 views
0
I have a question about mysql date!

Hello, incumbent a newcomer to the society as a planning service 21 years old!I am studying mysql at the company and learning to manage data such as sales.We are currently creating a data table that c...

2 years ago

1 answers
81 views
0
How do I access my MySQL database from Java?

How do I access my MySQL database from Java?

2 years ago

2 answers
77 views
0
Is there a way to find out on the web when changing the db data?

The database is using mysql.Is there any way that the web will notice and process when the DB specific value is updated?

2 years ago

1 answers
111 views
0
Python socket communication and mysql communication questions

import socketimport jsonimport pymysqlHOST = ''PORT = i = 0list_data =[]s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)s.bind((HOST, PORT))s.listen(1)while True : try : conn,addr = s.accept() ...


1 answers
36 views
0
How do I query mysql RANK?

Hello, I'm trying to print out the ranking on mysql. SELECT * FROM ( SELECT cu_distribution, count(cu_status), @curRank := @curRank + 1 AS rank FROM cs_customer p, (SELECT @curRank := ...

2 years ago

1 answers
43 views
0
When I put Excel data into the table in Mysql...

When putting Excel data in the Mysql table LOAD DATA INFILE 'File Name' INTO TABLE Table Name As far as I know, you put it in this query, not all the Excel data in the table like thatCan't we just spa...

2 years ago

1 answers
40 views
0
put mysql temporary field (virtual field)

Hi, everyone. +-------+---------+| | Field |count |+-------+---------+| test | 4 | <- Fields in Table +-------+---------+| etc | 2 | <- Temporary field of fields not in table.+-------+---------+...

2 years ago

1 answers
33 views
0
I'm planning a source for php membership, but how can I not allow you to join with an ID that is already in the DB when you sign up for membership?

I'm planning a source for php membership, but how can I not allow you to join with an ID that is already in the DB when you sign up for membership?

2 years ago

2 answers
81 views
0
I have a question about My SQL.

Hi, everyone. I'm inquiring about the MySQL query statement.Not a web developer, but a bit weak in query statements.In the program you are developing now, you need to find out how many columns you hav...

2 years ago
« - 37 - »

© 2024 OneMinuteCode. All rights reserved.