Why do you need so much data in one table?

|
ysf_cms 2021-03-25 09:13:35
ysf_cms 2021-03-25 09:12:50

İf we want to import with tsv file, it is okey

ysf_cms 2021-03-25 09:14:38
ysf_cms 2021-03-25 09:12:12

It has been working for 3 days and added 100 million lines.

piterden 2021-03-25 09:15:38
Make tsv
ysf_cms 2021-03-25 09:19:20
You mean csv convert to tsv?
piterden 2021-03-25 09:19:50
You sad it’s fast
piterden 2021-03-25 09:20:34
Why do you need so much data in one table?
piterden 2021-03-25 09:20:46
It is not normal
ysf_cms 2021-03-25 09:26:30
I’m building an automobile spare parts site, the products are much bigger than they are. There are about 8 million products
piterden 2021-03-25 09:27:57
ysf_cms 2021-03-25 09:26:30
I’m building an automobile spare parts site, the products are much bigger than they are. There are about 8 million products

Show first 10 lines of your CSV

piterden 2021-03-25 09:30:58
Use text please
MasterZiv 2021-03-25 15:39:27
Anime. this chat is about anime !
user8938 2021-03-25 15:52:42
MasterZiv 2021-03-25 15:39:27
Anime. this chat is about anime !

Are you one

MasterZiv 2021-03-25 15:53:08
user8938 2021-03-25 15:52:42
Are you one

I am

MasterZiv 2021-03-25 16:04:17
I am THE ONE!
2021-03-25 21:38:30
Wow. If you have millions of rows. Try GCP or AWS. I don’t think mySQL is capable for this.
MasterZiv 2021-03-25 21:42:25
2021-03-25 21:38:30
Wow. If you have millions of rows. Try GCP or AWS. I don’t think mySQL is capable for this.

For several millions of rows MySQL is definitely ok. For billions prob. no.

2021-03-26 07:05:23
MasterZiv 2021-03-25 21:42:25
For several millions of rows MySQL is definitely ok. For billions prob. no.

Thanks Ilia.

rodrigo_tc7 2021-03-26 10:03:07
I’ve read that mysql has a 2^64 rows limit with “big table” option enabled.

And about use cases with some TB and 5.000.000.000 rows in some of the more than 200.000 tables that they had

Ujjawal 2021-03-27 16:49:12
https://www.chegg.com/homework-help/questions-and-answers/write-query-return-sales-details-customers-products-query-return-customers-even-customers–q45662394

Chegg
Answer to Write a query that will return sales details of all
Ujjawal 2021-03-27 16:49:26
Does someone know what is wrong with my code for this question
Ujjawal 2021-03-27 16:50:16
SELECT IFNULL(customer_name, “N/A”) customer_name, IFNULL(product_name, “N/A”) product_name, IFNULL(quantity, 0) quantity
FROM ((customer LEFT OUTER JOIN invoice ON customer.id = invoice.customer_id) LEFT OUTER JOIN invoice_item ON invoice_item.invoice_id = invoice.id) LEFT OUTER JOIN product ON invoice_item.product_id = product.id
ORDER BY customer.id, product.id;
Ashwin_Bruno 2021-03-27 18:31:40
Ujjawal 2021-03-27 16:50:16
SELECT IFNULL(customer_name, “N/A”) customer_name, IFNULL(product_name, “N/A”) product_name, IFNULL(quantity, 0) quantity
FROM ((customer LEFT OUTER JOIN invoice ON customer.id = invoice.customer_id) LEFT OUTER JOIN invoice_item ON invoice_item.invoice_id = invoice.id) LEFT OUTER JOIN product ON invoice_item.product_id = product.id
ORDER BY customer.id, product.id;

SELECT IFNULL(customer_name, “N/A”) customer_name, IFNULL(product_name, “N/A”) product_name, IFNULL(quantity, 0) quantity
FROM customer
LEFT OUTER JOIN invoice ON customer.id = invoice.customer_id
LEFT OUTER JOIN invoice_item ON invoice_item.invoice_id = invoice.id LEFT OUTER JOIN product ON invoice_item.product_id = product.id
ORDER BY customer.id, product.id;

Ashwin_Bruno 2021-03-27 18:32:34
Ashwin_Bruno 2021-03-27 18:31:40
SELECT IFNULL(customer_name, “N/A”) customer_name, IFNULL(product_name, “N/A”) product_name, IFNULL(quantity, 0) quantity
FROM customer
LEFT OUTER JOIN invoice ON customer.id = invoice.customer_id
LEFT OUTER JOIN invoice_item ON invoice_item.invoice_id = invoice.id LEFT OUTER JOIN product ON invoice_item.product_id = product.id
ORDER BY customer.id, product.id;

Remove the brackets from FROM clause and try

ysf_cms 2021-03-27 21:50:09
piterden 2021-03-25 09:27:57
Show first 10 lines of your CSV

Anyone program could not open this file, ı am working so ı am sorry later message

piterden 2021-03-27 21:50:46
head
JordanErifried 2021-03-27 22:28:47
Head !?
MasterZiv 2021-03-27 22:48:26
JordanErifried 2021-03-27 22:28:47
Head !?

The GNU/Linux command to show 10 top lines of CSV file

Vinoth M 2021-03-28 06:16:13
How to concatenate the two strings in ireport
Vinoth M 2021-03-28 06:16:59
Select concat (Firstname,Lastname) as Name from students;
Vinoth M 2021-03-28 06:17:15
Vinoth M 2021-03-28 06:16:59
Select concat (Firstname,Lastname) as Name from students;

I use this query ,it doesn’t work

Vinoth M 2021-03-28 06:18:12
Vinoth M 2021-03-28 06:16:13
How to concatenate the two strings in ireport

Jaspersoft ireport 5.6.0

MasterZiv 2021-03-28 06:37:44
Vinoth M 2021-03-28 06:16:59
Select concat (Firstname,Lastname) as Name from students;

This should work

MasterZiv 2021-03-28 06:39:47
Vinoth M 2021-03-28 06:16:59
Select concat (Firstname,Lastname) as Name from students;

https://www.w3schools.com/sql/func_mysql_concat.asp

MySQL CONCAT() FunctionW3Schools
W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.
rodrigo_tc7 2021-03-28 16:45:30
Maybe the space between concat and the first (
?
ysf_cms 2021-03-28 20:18:24
mysql_en-8875.jpg

|