Dataset Viewer
Auto-converted to Parquet Duplicate
Input
stringlengths
18
76
Output
stringlengths
53
174
What is the price of the medicine named 'Paracetamol'?
SELECT mi.price AS medicine_price FROM mediverse_inventory mi JOIN mediverse_medicine mm ON mi.medicine_id = mm.id WHERE mm.name = 'Paracetamol';
What are the uses of 'Amoxicillin'?
SELECT uses FROM mediverse_medicine WHERE name = 'Amoxicillin';
Can you tell me the side effects of 'Lisinopril'?
SELECT side_effects FROM mediverse_medicine WHERE name = 'Lisinopril';
Do you have any alternatives for 'Omeprazole'?
SELECT alternatives FROM mediverse_medicine WHERE name = 'Omeprazole';
Is there a medicine available for headache?
SELECT name FROM mediverse_medicine WHERE uses LIKE '%headache%';
Show me all the medicines priced below 50₹.
SELECT name FROM mediverse_medicine WHERE price < 50;
Can you list all the medicines with 'tablet' in their name?
SELECT name FROM mediverse_medicine WHERE name LIKE '%tablet%';
What are the side effects of the cheapest medicine available?
SELECT side_effects FROM mediverse_medicine WHERE price = (SELECT MIN(price) FROM Medicines);
what are the medicines for fever?
SELECT name from mediverse_medicine where uses LIKE '%fever%';
what are the medicines for drowsiness?
SELECT name from mediverse_medicine where uses LIKE '%drowsiness%';
solutions for drowsiness?
SELECT name from mediverse_medicine where uses LIKE '%drowsiness%';
solutions for fever?
SELECT name from mediverse_medicine where uses LIKE '%fever%';
What is the price of the medicine named 'Aspirin'?
SELECT mi.price AS medicine_price FROM mediverse_inventory mi JOIN mediverse_medicine mm ON mi.medicine_id = mm.id WHERE mm.name = 'Aspirin';
Do you have any alternatives for 'Omeprazole'?
SELECT alternatives FROM mediverse_medicine WHERE name = 'Omeprazole';
alternatives for 'Aspirin'?
SELECT alternatives FROM mediverse_medicine WHERE name = 'Aspirin';
How aspirin are available?
SELECT mi.quantity AS medicine_quantity FROM mediverse_inventory mi JOIN mediverse_medicine mm ON mi.medicine_id = mm.id WHERE mm.name = 'Asipirin';
What is the qunatity of Paracetamol avalailable?
SELECT mi.quantity AS medicine_quantity FROM mediverse_inventory mi JOIN mediverse_medicine mm ON mi.medicine_id = mm.id WHERE mm.name = 'Paracetamol';
Get the price of the medicine with the highest quantity available.
SELECT mm.name, mi.price FROM mediverse_inventory mi JOIN mediverse_medicine mm ON mi.medicine_id = mm.id WHERE mi.quantity = (SELECT MAX(quantity) FROM mediverse_inventory);
List medicines with prices above 1000₹.
SELECT mm.name, mi.price FROM mediverse_inventory mi JOIN mediverse_medicine mm ON mi.medicine_id = mm.id WHERE mi.price > 1000;
Show the medicines available in New York.
SELECT mm.name, mi.quantity FROM mediverse_inventory mi JOIN mediverse_medicine mm ON mi.medicine_id = mm.id WHERE mi.address = 'New York';
Find the medicine with the highest price.
SELECT mm.name, mm.price FROM mediverse_medicine mm WHERE mm.price = (SELECT MAX(price) FROM mediverse_medicine);
Display medicines with side effects including drowsiness.
SELECT mm.name, mm.side_effects FROM mediverse_medicine mm WHERE mm.side_effects LIKE '%drowsiness%';
List medicines with prices between 500₹ and 1000₹.
SELECT mm.name, mm.price FROM mediverse_medicine mm WHERE mm.price BETWEEN 500 AND 1000;
Show medicines available in Chennai.
SELECT mm.name, mi.quantity FROM mediverse_inventory mi JOIN mediverse_medicine mm ON mi.medicine_id = mm.id WHERE mi.address LIKE '%Chennai%';
Display medicines with uses for bacterial infections.
SELECT mm.name, mm.uses FROM mediverse_medicine mm WHERE mm.uses LIKE '%bacterial infections%';
Find medicines with alternatives available.
SELECT mm.name, mm.alternatives FROM mediverse_medicine mm WHERE mm.alternatives IS NOT NULL;
Display medicines with uses for high blood pressure.
SELECT mm.name, mm.uses FROM mediverse_medicine mm WHERE mm.uses LIKE '%high blood pressure%';
Find medicines with quantities above 100.
SELECT mm.name, mi.quantity FROM mediverse_inventory mi JOIN mediverse_medicine mm ON mi.medicine_id = mm.id WHERE mi.quantity > 100;
List medicines with addresses containing 'Chennai'.
SELECT mm.name, mi.address FROM mediverse_inventory mi JOIN mediverse_medicine mm ON mi.medicine_id = mm.id WHERE mi.address LIKE '%Chennai%';
Show medicines with prices less than the average price.
SELECT mm.name, mm.price FROM mediverse_medicine mm WHERE mm.price < (SELECT AVG(price) FROM mediverse_medicine);
Display medicines with uses for pain relief.
SELECT mm.name, mm.uses FROM mediverse_medicine mm WHERE mm.uses LIKE '%pain relief%';
Show medicines with side effects including nausea.
SELECT mm.name, mm.side_effects FROM mediverse_medicine mm WHERE mm.side_effects LIKE '%nausea%';
Find medicines with quantities less than 30.
SELECT mm.name, mi.quantity FROM mediverse_inventory mi JOIN mediverse_medicine mm ON mi.medicine_id = mm.id WHERE mi.quantity < 30;
Display medicines with prices greater than 2000₹.
SELECT mm.name, mm.price FROM mediverse_medicine mm WHERE mm.price > 2000;
Show medicines with side effects including diarrhea.
SELECT mm.name, mm.side_effects FROM mediverse_medicine mm WHERE mm.side_effects LIKE '%diarrhea%';
Show medicines with uses for diabetes.
SELECT mm.name, mm.uses FROM mediverse_medicine mm WHERE mm.uses LIKE '%diabetes%';
Show medicines suitable for treating anxiety disorders.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.uses LIKE '%anxiety%';
Display medicines with potential side effects related to stomach irritation.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.side_effects LIKE '%stomach irritation%';
Find alternatives for pain relief medications.
SELECT mm.alternatives FROM mediverse_medicine mm WHERE mm.uses LIKE '%pain relief%';
List medications for bacterial infections.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.uses LIKE '%bacterial infections%';
Show medicines effective for asthma and COPD.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.uses LIKE '%asthma%' OR mm.uses LIKE '%COPD%';
Display medications with potential side effects of nausea and dizziness.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.side_effects LIKE '%nausea%' AND mm.side_effects LIKE '%dizziness%';
Find alternatives for acid reflux and ulcer medications.
SELECT mm.alternatives FROM mediverse_medicine mm WHERE mm.uses LIKE '%acid reflux%' OR mm.uses LIKE '%ulcers%';
List medications suitable for treating depression.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.uses LIKE '%depression%';
how medicines with potential side effects including weight gain.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.side_effects LIKE '%weight gain%';
Display medications for treating inflammation.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.uses LIKE '%inflammation%';
Find alternatives for medications causing allergic reactions.
SELECT mm.alternatives FROM mediverse_medicine mm WHERE mm.side_effects LIKE '%allergic reactions%';
List medications for pain relief and fever reduction.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.uses LIKE '%pain relief%' OR mm.uses LIKE '%fever reduction%';
Show medicines with potential side effects of headache.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.side_effects LIKE '%headache%';
Display medications for treating high cholesterol.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.uses LIKE '%high cholesterol%';
Find alternatives for medications causing muscle pain.
SELECT mm.alternatives FROM mediverse_medicine mm WHERE mm.side_effects LIKE '%muscle pain%';
List medications suitable for treating diabetes.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.uses LIKE '%diabetes%';
Show medicines with potential side effects of drowsiness.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.side_effects LIKE '%drowsiness%';
Display medications for bacterial infections with minimal side effects.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.uses LIKE '%bacterial infections%' AND mm.side_effects NOT LIKE '%side effects%';
Find alternatives for medications causing nausea.
SELECT mm.alternatives FROM mediverse_medicine mm WHERE mm.side_effects LIKE '%nausea%';
List medications for pain relief with fast action.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.uses LIKE '%pain relief%' AND mm.uses LIKE '%fast action%';
List medications for pain relief with fast action.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.uses LIKE '%pain relief%' AND mm.uses LIKE '%fast action%';
Show medicines with potential side effects of constipation.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.side_effects LIKE '%constipation%';
Display medications for treating heart failure.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.uses LIKE '%heart failure%';
Find alternatives for medications causing diarrhea.
SELECT mm.alternatives FROM mediverse_medicine mm WHERE mm.side_effects LIKE '%diarrhea%';
List medications suitable for treating allergies.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.uses LIKE '%allergies%';
Display medications for bacterial infections with minimal side effects.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.uses LIKE '%bacterial infections%' AND mm.side_effects NOT LIKE '%side effects%';
Find alternatives for medications causing weight gain.
SELECT mm.alternatives FROM mediverse_medicine mm WHERE mm.side_effects LIKE '%weight gain%';
List medications for pain relief with fast action.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.uses LIKE '%pain relief%' AND mm.uses LIKE '%fast action%';
Show medicines with potential side effects of constipation.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.side_effects LIKE '%constipation%';
Display medications for treating heart failure.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.uses LIKE '%heart failure%';
Find alternatives for medications causing diarrhea
SELECT mm.alternatives FROM mediverse_medicine mm WHERE mm.side_effects LIKE '%diarrhea%';
List medications suitable for treating allergies.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.uses LIKE '%allergies%';
Show medicines with potential side effects of confusion.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.side_effects LIKE '%confusion%';
Display medications for bacterial infections with minimal side effects.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.uses LIKE '%bacterial infections%' AND mm.side_effects NOT LIKE '%side effects%';
Find alternatives for medications causing weight gain.
SELECT mm.alternatives FROM mediverse_medicine mm WHERE mm.side_effects LIKE '%weight gain%';
List medications for pain relief with fast action.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.uses LIKE '%pain relief%' AND mm.uses LIKE '%fast
Find medications suitable for treating insomnia.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.uses LIKE '%insomnia%';
Show medicines with potential side effects of dry mouth.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.side_effects LIKE '%dry mouth%';
Display medications for neuropathic pain.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.uses LIKE '%neuropathic pain%';
Find alternatives for medications causing stomach upset.
SELECT mm.alternatives FROM mediverse_medicine mm WHERE mm.side_effects LIKE '%stomach upset%';
List medications suitable for treating seizures.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.uses LIKE '%seizures%';
Show medicines with potential side effects of fast heartbeat.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.side_effects LIKE '%fast heartbeat%';
Display medications for treating muscle spasms.
SELECT mm.name FROM mediverse_medicine mm WHERE mm.uses LIKE '%muscle spasms%';
Get meds to handle nerve pain.
SELECT name FROM mediverse_medicine WHERE uses LIKE '%nerve pain%';
What's the alternative for meds that upset the stomach?
SELECT alternatives FROM mediverse_medicine WHERE side_effects LIKE '%upset stomach%';
Show me stuff for seizures.
SELECT name FROM mediverse_medicine WHERE uses LIKE '%seizures%';
Any meds that might cause a fast heartbeat?
SELECT name FROM mediverse_medicine WHERE side_effects LIKE '%fast heartbeat%';
Give me drugs for muscle spasms.
SELECT name FROM mediverse_medicine WHERE uses LIKE '%muscle spasms%';
What can I take instead of meds that make me dizzy?
SELECT alternatives FROM mediverse_medicine WHERE side_effects LIKE '%dizzy%';
Show meds for blood clots.
SELECT name FROM mediverse_medicine WHERE uses LIKE '%blood clots%';
Get me stuff for asthma.
SELECT name FROM mediverse_medicine WHERE uses LIKE '%asthma%';
List drugs for COPD.
SELECT name FROM mediverse_medicine WHERE uses LIKE '%COPD%';
What's good for managing cholesterol?
SELECT name FROM mediverse_medicine WHERE uses LIKE '%cholesterol%';
Any alternatives for meds causing weight loss?
SELECT alternatives FROM mediverse_medicine WHERE side_effects LIKE '%weight loss%';
Get me something for ulcers.
SELECT name FROM mediverse_medicine WHERE uses LIKE '%ulcers%';
Meds for heartburn?
SELECT name FROM mediverse_medicine WHERE uses LIKE '%heartburn%';
Alternatives for meds causing liver problems?
SELECT alternatives FROM mediverse_medicine WHERE side_effects LIKE '%liver problems%';
Drugs for kidney problems?
SELECT name FROM mediverse_medicine WHERE uses LIKE '%kidney problems%';
Anything causing fatigue?
SELECT name FROM mediverse_medicine WHERE side_effects LIKE '%fatigue%';
Meds for diabetes?
SELECT name FROM mediverse_medicine WHERE uses LIKE '%diabetes%';
Anything for allergies?
SELECT name FROM mediverse_medicine WHERE uses LIKE '%allergies%';
What can help with mood swings?
SELECT name FROM mediverse_medicine WHERE uses LIKE '%mood swings%';
Show me meds for managing anxiety.
SELECT name FROM mediverse_medicine WHERE uses LIKE '%anxiety%';

No dataset card yet

Downloads last month
2