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 |
what is the Dynamic management views? where can you use?
What is difference between schema and table?
What are the differences between drop a table and truncate a table?
Why we use mysqli instead of mysql?
How do I add a column to a table in mysql?
How to convert dates to character strings?
Which command is used to view the content of the table in mysql?
Is primary key auto increment?
How do you use auto increment?
What is “i_am_a_dump” flag in mysql?
Can you rename a database in mysql?
Where is mysql used?