Can you post the DDL part of you database?

|
MasterZiv 2020-10-05 09:17:34
2020-10-04 21:59:24
How to find bname,publication, author where publication=”Y” USING ONLY SUBQUERIES?

There is no publication field in your schema, as far as I can see…

Mr.Robot 2020-10-05 09:19:20
What is command for taking dump of only functions
MasterZiv 2020-10-05 09:20:07
Mr.Robot 2020-10-05 09:19:20
What is command for taking dump of only functions

Mysqldump

Mr.Robot 2020-10-05 09:21:07
Mysqldump -uroot -p — no- data –functions <database> ..right ?
Master Yoda 2020-10-05 09:22:43
Mr.Robot 2020-10-05 09:21:07
Mysqldump -uroot -p — no- data –functions <database> ..right ?

–routines not functions. It will include both sp and functions.

Mr.Robot 2020-10-05 09:23:08
Ok thanks
MasterZiv 2020-10-05 09:42:33
Mr.Robot 2020-10-05 09:21:07
Mysqldump -uroot -p — no- data –functions <database> ..right ?

Yes, kind of

2020-10-05 10:07:53
i could use join
2020-10-05 10:08:01
i got confused
2020-10-05 10:08:04
such a silly confusion
2020-10-05 10:25:47
i solved it with inner join
2020-10-05 10:26:04
mysql_en-6071.jpg

2020-10-05 10:26:27
but i can’t understand in detail about joins? any good resources to learn about joins in greater depth?
piterden 2020-10-05 11:19:47
2020-10-05 10:26:27
but i can’t understand in detail about joins? any good resources to learn about joins in greater depth?

Can you post the DDL part of you database?

2020-10-05 11:20:52
wat
2020-10-05 11:20:53
bro
2020-10-05 11:20:57
i am solving assignments
piterden 2020-10-05 11:22:37
I mean CREATE statements of your tables, or better full database with all data
2020-10-05 11:51:10
wait bro
2020-10-05 11:51:14
i will do that soon
2020-10-05 12:54:02
how to write this using a subquery
2020-10-05 12:54:17
select ename, faculty from employee where dateofemployee=”2020-01-01″
piterden 2020-10-05 12:58:07
2020-10-05 12:54:17
select ename, faculty from employee where dateofemployee=”2020-01-01″

There is no way to do it and there isn’t join in query

2020-10-05 12:58:15
true man
2020-10-05 12:58:25
i don’t know why my teachers give these crazy assignemnts
2020-10-05 12:58:30
they don’t prepare at all.
piterden 2020-10-05 12:58:50
Where do you study?
2020-10-05 12:58:55
nepal
2020-10-05 12:59:06
are u from russia?
piterden 2020-10-05 12:59:45
2020-10-05 12:58:55
nepal

School? University? What direction?

piterden 2020-10-05 12:59:50
2020-10-05 12:59:06
are u from russia?

Yes

piterden 2020-10-05 13:04:29
If you aren’t ready, why do you go to study there?
2020-10-05 13:05:46
piterden 2020-10-05 13:04:29
If you aren’t ready, why do you go to study there?

what ready?

piterden 2020-10-05 13:05:49
Your problem is easier than simple. It is googling with one query only
piterden 2020-10-05 13:06:30
And I had already showed you queries to google which you need
2020-10-05 13:06:42
select bname, author from book inner join booklist on book.bname=booklist.name where publication=”shajha prakashan”
2020-10-05 13:06:58
need to convert this to sub query.
2020-10-05 13:07:00
i am trying it
2020-10-05 13:07:05
frm google
MasterZiv 2020-10-05 13:09:40
2020-10-05 10:26:27
but i can’t understand in detail about joins? any good resources to learn about joins in greater depth?

Martin Gruber introduction to SQL

piterden 2020-10-05 13:09:40
If you want to be a programmer, you should be ready to solve such issues without any help from outside.
2020-10-05 13:14:12
piterden 2020-10-05 13:09:40
If you want to be a programmer, you should be ready to solve such issues without any help from outside.

yes

2020-10-05 13:14:15
i solve it myself
2020-10-05 13:14:23
i don’t need big help
2020-10-05 13:14:29
i have learnt how to learn
2020-10-05 13:14:34
but i learn little bit slowly
2020-10-05 13:14:46
that is my only dis
2020-10-05 13:14:53
MasterZiv 2020-10-05 13:09:40
Martin Gruber introduction to SQL

this book is a gem

2020-10-05 13:15:03
i knew from this telegram
MasterZiv 2020-10-05 13:15:38
Yes
|