For the database from the previous question, please give an
SQL query which returns the invoice number of all invoices
which contain the article with the number ?1234?. The query
should be able to run under a MySQL 4.0 database.
Answer / frank
SELECT invoiceNumber FROM invoices i INNER JOIN articles a
ON i.articleId=a.articleId WHERE article LIKE '%1234%';
Is This Answer Correct ? | 0 Yes | 0 No |
How do I show users in mysql?
What is delimiter $$?
Will mysql remain free?
How does limit work in mysql?
How to copy data from one server to another using php?
Can you tell the difference between ereg_replace() and eregi_replace()?
What is row level locking in mysql?
What are the disadvantages of stored procedures?
Ondelete clause is specified with a.)Drop table b.)Delete command c.)Create table d.)Select command
change column name and make a unique column so we get no dupes.
How do I edit a table in mysql?
What is sharding in mysql?