← prev | next →
Chetan V 2020-02-18 10:59:38
MasterZiv 2020-02-18 10:57:40
HERE
https://dev.mysql.com/doc/refman/8.0/en/server-administration.html
Thanks ilia ill read the article shared by you.
Balu504 2020-02-19 07:16:08

Hi if any one of u have this document plz share me tq in advance.
2020-02-20 15:09:08
create new table and insert 10000 rs, need to insert user id and username, i need user name is like user1,user2,user3
2020-02-20 15:09:30
How to increment varchar
piterden 2020-02-20 15:10:27
Just write it
Amber … 2020-02-20 15:10:47
grt go on…
piterden 2020-02-20 15:11:24
Using INSERT you should write each row
piterden 2020-02-20 15:12:07
Or do you generate INSERT with other language?
2020-02-20 16:12:52
piterden 2020-02-20 15:11:24
Using INSERT you should write each row
The using cancat possible
2020-02-20 16:13:28
I need strord procedure dude
2020-02-20 16:52:15
Any one there
MasterZiv 2020-02-20 18:16:05
2020-02-20 16:52:15
Any one there

MasterZiv 2020-02-20 18:17:16
2020-02-20 16:12:52
The using cancat possible
You’d better asked your question …
2020-02-21 13:38:29
2020-02-20 15:09:08
create new table and insert 10000 rs, need to insert user id and username, i need user name is like user1,user2,user3
CREATE TABLE user( userid INT(24) AUTO_INCREMENT, username VARCHAR(255)AS(CANCAT(“user”,”,”userid”)), useramount INT(25), PRIMARY KEY(userid) ); while x >10000 INSTER INTO user(concat(user,userid),10000)
Mayank Maheshwari 2020-02-21 13:53:58
Which parameter z used for fast the insertion process
Mayank Maheshwari 2020-02-21 13:54:28
We have DR sites but insertion take too much time network latency is ok
MasterZiv 2020-02-21 14:05:42
Mayank Maheshwari 2020-02-21 13:53:58
Which parameter z used for fast the insertion process
Did you use
SET ULTRASONIC_FAST_INSERT ON;
before inserting ?
Mayank Maheshwari 2020-02-21 14:06:16
MasterZiv 2020-02-21 14:05:42
Did you use
SET ULTRASONIC_FAST_INSERT ON;
before inserting ?
No
MasterZiv 2020-02-21 14:06:33
Mayank Maheshwari 2020-02-21 14:06:16
No
then try it !
Mayank Maheshwari 2020-02-21 14:07:02
MasterZiv 2020-02-21 14:06:33
then try it !
In my.cnf
MasterZiv 2020-02-21 14:07:36
Mayank Maheshwari 2020-02-21 14:07:02
In my.cnf
NO, this is SESSION switch.
MasterZiv 2020-02-21 14:08:13
Mayank Maheshwari 2020-02-21 14:07:02
In my.cnf
Do you seriously think such a switch exist ?
Mayank Maheshwari 2020-02-21 14:08:30
MasterZiv 2020-02-21 14:07:36
NO, this is SESSION switch.
Ok…we are using jar to upload the data and through loop they are running the insertion
Mayank Maheshwari 2020-02-21 14:08:46
Thansk ..will use the same Anne check
MasterZiv 2020-02-21 14:09:27
Mayank Maheshwari 2020-02-21 14:08:46
Thansk ..will use the same Anne check
What is “Anne check” ?
Mayank Maheshwari 2020-02-21 14:09:51
MasterZiv 2020-02-21 14:09:27
What is “Anne check” ?
Sorry typing mistake
MasterZiv 2020-02-21 14:10:36
О! и так всегда.
iDoNotHaveAName 2020-02-22 00:54:43
Hi, can I ask you something? It’s not related to MySQL but to a doubt I have for a SQL statement
MasterZiv 2020-02-22 05:56:46
iDoNotHaveAName 2020-02-22 00:54:43
Hi, can I ask you something? It’s not related to MySQL but to a doubt I have for a SQL statement
Go!
Ks_0610 2020-02-22 06:35:49
Is there any vouchers for sql ?
iDoNotHaveAName 2020-02-22 11:45:22
MasterZiv 2020-02-22 05:56:46
Go!
Is there any way I can simulate a count(distinct (…)) Without using the keyword distinct?
MasterZiv 2020-02-22 11:46:32
iDoNotHaveAName 2020-02-22 11:45:22
Is there any way I can simulate a count(distinct (…)) Without using the keyword distinct?
No
MasterZiv 2020-02-22 11:46:54
iDoNotHaveAName 2020-02-22 11:45:22
Is there any way I can simulate a count(distinct (…)) Without using the keyword distinct?
Why do you ask?
iDoNotHaveAName 2020-02-22 11:48:05
MasterZiv 2020-02-22 11:46:54
Why do you ask?
Because I have a “database exam” and I was resolving some old exams, and I used count(distinct ()) but my professor has never explained it
MasterZiv 2020-02-22 11:50:07
iDoNotHaveAName 2020-02-22 11:48:05
Because I have a “database exam” and I was resolving some old exams, and I used count(distinct ()) but my professor has never explained it
Count ( field ) counts non null values in this field
Count ( distinct field ) counts distinct (unique) non null values in this field
iDoNotHaveAName 2020-02-22 11:52:56
Thank you☺️☺️
MasterZiv 2020-02-22 11:53:47
MasterZiv 2020-02-22 11:50:07
Count ( field ) counts non null values in this field
Count ( distinct field ) counts distinct (unique) non null values in this field
And there in no operation in SQL which would take a set and produce a set of unique values.
So distinct is unreplaceable.
By the way, count (distinct field) is a very strange operation and it is very rarely used
Chester Bennington 2020-02-22 13:01:04

Hi, I am making a university project and I am stuck in a MYSQL query.
The question is “List the guests currently staying at the Grosvenor Hotel.” The above screenshot is a demo table I have created.
Can anyone please help me out?
Gowtham G 2020-02-23 04:26:38
Chester Bennington 2020-02-22 13:01:04
Hi, I am making a university project and I am stuck in a MYSQL query.
The question is “List the guests currently staying at the Grosvenor Hotel.” The above screenshot is a demo table I have created.
Can anyone please help me out?
Select b.guest_number from hotel h inner join booking b on h.hotel_number =b.hotel_number where h.hotel_number = 107
U can add more filters example date , city & hotel name
SourabhHawale 2020-02-23 10:05:51

Error. Please help
SourabhHawale 2020-02-23 10:07:45
Please help
Kenn_Adams 2020-02-23 12:13:09
SourabhHawale 2020-02-23 10:05:51
Error. Please help
The error says it exactly..
Check the table’s name.. maybe there’s a typo somewhere.
SourabhHawale 2020-02-24 21:30:26
SQLSTATE[HY093] Invalid parameter number please help
SourabhHawale 2020-02-24 21:30:44
Any one please help
MasterZiv 2020-02-24 23:36:21
SourabhHawale 2020-02-24 21:30:26
SQLSTATE[HY093] Invalid parameter number please help
This needs more details, what you do, what is the query, what are the tables,what you get as diagnostics, and so on
Dhruva 2020-02-26 09:09:09
How Can I make the Search Engine for my database.I mean like LinkedIn where It should search from my own DB and how it can be mapped
piterden 2020-02-26 09:15:09
There are a several ways. The simplest is to use LIKE operator
Dhruva 2020-02-26 09:24:36
How do I do mapping with user profile ? Any links for reference
piterden 2020-02-26 09:26:20
https://dev.mysql.com/doc/
Ayush1705199 2020-02-26 10:05:35
I am unable to install SSMS
← prev | next →