Multiple choice technology platforms and products

In Lock Tables SQL command tables are seperated by the delimiter

  1. Tab

  2. Dot

  3. Newline

  4. Comma

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

In the SQL LOCK TABLES command (syntax varies by database), multiple tables are separated by commas. For example, 'LOCK TABLES table1 READ, table2 WRITE' locks two tables. This follows standard SQL syntax patterns where multiple items in a list are comma-delimited. Tabs (A), dots (B), and newlines (C) are not used as table separators in LOCK TABLES syntax.