Skip to content

SQL query get only parent directory

SELECT * FROM directory WHERE status_id = 10 AND workspace_id = 1 Above is my query and database table. dir_name = directory name dir_path = directory path For example, BbB is a nested directory …

Returning values from 2 select statements in Oracle Procedure

Homework question that I’m stuck on. I need to create a Procedure called dept_info with a department id as the IN parameter with department name and full name (concat of first and last name) of the manager of that department as the OUT parameters to be passed back to the invoking program. the procedure …

SQL Query with Excel VBA

I’m trying to run a SQL query with Excel VBA. I got the query from someone else. When I run this query, I’m getting the following error message: “The SELECT statement includes a reserve word or an argument name that is misspelled or missing, or the punctuation is incorrect.” I can&#821…