Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 786307
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T21:01:16+00:00 2026-05-14T21:01:16+00:00

I have a table with a schema of Table(number, ref, ref, varchar2, varchar2,…). How

  • 0

I have a table with a schema of Table(number, ref, ref, varchar2, varchar2,…).

How would I insert a row of data into this table?

When I do:

insert into table 
values (1, select ref(p), ref(d), '239 F.3d 1343', '35 USC § 283', ... 
           from plaintiff p, defendant d
            where p.name='name1' and d.name='name2');

I get a “missing expression” error.

If I do:

insert into table
1, select ref(p), ref(d), ... 
from plaintiff p, defendant 
where p.name=...;

I get a “missing keyword VALUES” error.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T21:01:16+00:00Added an answer on May 14, 2026 at 9:01 pm

    Your syntax on the insert is off. Try:

    insert into table  
    (select 1, ref(p), ref(d), '239 F.3d 1343', '35 USC § 283', ... 
       from plaintiff p, defendant d where p.name='name1' and d.name='name2');
    

    In general, it’s a good practice to explicitly mention the columns you’re inserting into as well, to avoid problems later if the column order changes, as well as to self-document the code:

    insert into table (col1, col2, col3, ...) 
    (select 1, ref(p), ref(d), '239 F.3d 1343', '35 USC § 283', ... 
       from plaintiff p, defendant d where p.name='name1' and d.name='name2');
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Say I have this table schema. ID AccNo Amount Say I have this data
I have a table which have schema like this id name 1 jack 2
I have an orders table with a schema like this. CREATE TABLE orders (
Is it possible to have same table name on different schema with different data
I have test_scores table with following fields: Table schema: id (number) score1 (number) score2
I have a table with 450000 row full of news. The table schema is
Given a table with schema like this: id1 id2 day number How can I
I have a simple table schema: Person: ID, Name PhoneNumber: ID, Type, Number #Type
I have a table schema which is essentially a bunch of transaction info with
edit: my table schema below is poorly normalized as suggested and I have revamped

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.