What is the number of attributes in the following SQL table?CREATE TABLE employee (emp_name CHAR(30),emp_id INT);

🎲 Try a Random Question  |  Total Questions in Quiz: 33  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
MySQL Basics Practice Test: MySQL System, Status and User Variables — practice the complete quiz, review flashcards, or try a random question.

Quiz on MySQL system and session only system variables, status and user defined variables. In MySQL Workbench, you can view the system and status variables by clicking Status and System Variables under the Management tab in the left navigation pane. The Status and System Variables screen lists all server variables for the MySQL connection. You can copy all variables to your clipboard, or use the search function to filter the variables.  You can also change system variables in MySQL Workbench by following these steps: Open the Administration tab Select the Status and System Variables... Show more

What is the number of attributes in the following SQL table?<br>CREATE TABLE employee (<br>emp_name CHAR(30),<br>emp_id INT<br>);