A brilliant SQL resource on Youtube tachTFQ (great teacher) - BUT exactly how different is native SQL compared to ACCESS SQL? Richard Prost does not indicate a great difference & I would have thought semantically it would be near identical. Seems to have different datatypes, ∴ data-sizes presumably. I know there are macros for converting these from Access to MSSQL for future development. But on such a basic I'm failing; questioning if it is worth studying these if they are greatly different & if I'm just wasting my time. The lack of MS Access tutorials indicates they are near identical.
E.g.
What's up here?
Or:
E.g.
- I received 2 different error warnings (not concurrently):
- Warning on SELECT clause mispelled/ reserved keyword
- Syntax error in FROM clause (pictured)
- I thought the below may have been because Alias' need to have the AS operator, but NO
- Or complete tbl names instead of Alias' - NO
- Am I correct in saying an alias can be created by merely following the declared tbl/ qry/ field with the desired name of the Alias in native SQL but not in Access SQL?
- If it is worth me studying native SQL?
Code:
SELECT employee.emp_name, department.dept_name
FROM employee
JOIN department on employee.dept_id = department.dept_id;
What's up here?
Or:
Code:
SELECT e.emp_name, d.dept_name
FROM employee e
JOIN department d on e.dept_id = d.dept_id;