I want to be able to create simple tables and run SQL queries on them. I’m talking tables with fewer than 12 items. Is there an online tool to do this? This might seem crazy, but it’d really help as I go between 3-4 computers a day.
Example:
Cats
Cat Names | Age
Marsha | 5
Melon | 3
Select * from Cats where Age > 3
Marsha | 5
Obviously that’s a very, very simple example … but I’m looking more towards testing some trickier SQL statements.
Edit: Not doing support. Right now I’m doing training and presentations. Screen sharing is not an option.
I just found this tool today:
ideone
It lets you choose from a number of languages (including SQL), write your code and then execute it. Pretty cool
Thanks to FreeAsInBeer for pointing me towards it.