| Access | SQL Server | Notes |
|---|---|---|
| SELECT DISTINCTROW | SELECT DISTINCT | No duplicate rows |
| LIKE "cat" | LIKE "%cat%" | Wildcards is * or % |
| DELETE * FROM tablename | DELETE FROM tablename | Leave out the * when you are deleting rows from SQL Server |
| Now() | GetDate() | Current date/time |
| Instr() | CharIndex() | Searching a string |
| Ucase() | Upper() | Upper case |
| Lcase | Lower() | Lower case |
| Trim() | Rtrim(ltrim()) | Removing extre spaces |
| int(x) | convert(int,x) | Convert to integer |
| A & B | A + B | String concatenation operator |
Related Links
Microsoft SQL Server page