Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

Sakshi Jain 2022

@Sakshi Jain 2022
About
Posts
2
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • List all tables from a specific database
    S Sakshi Jain 2022

    1. Using SQL Query To show the list of tables with the corresponding schema name, run this statement:

    SELECT * FROM information_schema.tables;

    or in a particular schema:

    SELECT * FROM information_schema.tables WHERE table_schema = 'schema_name';

    2. Using psql To list all tables: In all schemas:

    \dt *.*

    In a particular schema:

    \dt schema_name.*

    Database database question postgresql

  • solve the error
    S Sakshi Jain 2022

    You forget to add // on commenting lines that is in line number 5 and 22

    public class student{
    private int ID;
    private String Name;

    //Student class constructor
    student(int id, String name){
        this.ID = id;
        this.Name = name;
    }
    public int getid(){
        return this.ID;
    }
    public String Getname(){
        return this.Name;
    }
    public void SETid(int i){
        this.ID = i;
    }
    public void sETNAme(String n){
        this.Name=n;
    }
    // method to display data
    public void display() {
        System.out.println("Student id is: " + id + " "
            + "and Student name is: "
            + Name;
        );
        System.out.println();
    }
    

    }

    Java help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups