This is the website
`https://sqlshare.escience.washington.edu`
All you need to log on is a UW Id or Google Account.
Once you log in the main UIs include
In short, SQLShare is a easy way to manipulate tabular data, including (but not limited to)
- selecting data subsets
- joining tables
- performing arithmatic
- reorganizing tabular data
### Here is a straight-forward example of joining two tables.
A BLAST output table will be joined with gene descriptions.
Table 1 is a BLAST output tablular file uploaded using wizard shown above.
This can also be done in New Query UI
And from here you can Save or simply download the joined table.
Explanation of code
```
SELECT *
FROM
[wearh@washington.edu].[Oly_Blast_uniprot_swissprot.txt]blast
Left Join
[samwhite@washington.edu].[UniprotProtNamesReviewed_yes20130610]unp
on
blast.Column3 = unp.SPID​
```