Depends heavily on the position you are going for and the underlying server tech (Sybase, Oracle, DB2 etc).
App support then it could be basic concepts;
1. Basic select statement
2. Getting table, stored proc, trigger info
3. Checking server status
4. Using basic sql tools (isql etc).
5. Test on sql statments (i.e. what is the result)
Developer;
1. Tuning concepts for sql
2. Efficency of different constructs.
3. Nested transaction order.
4. Results from sql statements......
I mention the underlying tech as Oracle and Sybase for example have different methods for doing the same things......
Finding a tables' fields for example.
Sybase;
sp_help [tablename]
select * from [tablename] where 1=2
Oracle;
desc [tablename]
Note: I take it the Oracle is still valid as I have been on Sybase for the last 6 years
![Big Grin :D :D](/styles/default/xenforo/vbSmilies/Normal/biggrin.gif)
.
Cheers
RB